mirror of
https://github.com/discourse/discourse.git
synced 2025-01-09 03:03: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
|