cartodb-4.29/db/migrate/20121016113011_remove_last_active_time_to_users.rb
2020-06-15 10:58:47 +08:00

10 lines
150 B
Ruby

Sequel.migration do
up do
drop_column :users, :last_active_time
end
down do
add_column :users, :last_active_time, :timestamp
end
end