neocities/migrations/039_add_banned_at.rb
2014-08-11 04:21:25 -07:00

9 lines
No EOL
135 B
Ruby

Sequel.migration do
up {
DB.add_column :sites, :banned_at, :timestamp
}
down {
DB.drop_column :sites, :banned_at
}
end