cartodb-4.42/db/migrate/20121016113011_remove_last_active_time_to_users.rb

10 lines
150 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +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