cartodb/db/migrate/20121016113011_remove_last_active_time_to_users.rb

10 lines
150 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
up do
drop_column :users, :last_active_time
end
down do
add_column :users, :last_active_time, :timestamp
end
end