mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 01:22:36 +08:00
10 lines
175 B
Ruby
10 lines
175 B
Ruby
class RenameWarnings < ActiveRecord::Migration[4.2]
|
|
def up
|
|
rename_table :warnings, :user_warnings
|
|
end
|
|
|
|
def down
|
|
rename_table :user_warnings, :warnings
|
|
end
|
|
end
|