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