cartodb/db/migrate/20120823114609_add_last_active_time_to_users.rb
2020-06-15 10:58:47 +08:00

8 lines
123 B
Ruby

Sequel.migration do
change do
alter_table :users do
add_column :last_active_time, :timestamp
end
end
end