12 lines
184 B
Ruby
12 lines
184 B
Ruby
|
class AddColumnGhostToUsers < ActiveRecord::Migration
|
||
|
DOWNTIME = false
|
||
|
|
||
|
def up
|
||
|
add_column :users, :ghost, :boolean
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :users, :ghost
|
||
|
end
|
||
|
end
|