mirror of
https://github.com/discourse/discourse.git
synced 2024-12-17 03:03:42 +08:00
10 lines
158 B
Ruby
10 lines
158 B
Ruby
|
class RenameColumn < ActiveRecord::Migration[5.1]
|
||
|
def up
|
||
|
rename_column :users, :username, :username1
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
raise "not tested"
|
||
|
end
|
||
|
end
|