mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 15:49:55 +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
|