mirror of
https://github.com/discourse/discourse.git
synced 2024-12-11 16:53:49 +08:00
10 lines
170 B
Ruby
10 lines
170 B
Ruby
|
class RenameWarnings < ActiveRecord::Migration
|
||
|
def up
|
||
|
rename_table :warnings, :user_warnings
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
rename_table :user_warnings, :warnings
|
||
|
end
|
||
|
end
|