cartodb-4.29/db/migrate/20120823114609_add_last_active_time_to_users.rb

8 lines
123 B
Ruby
Raw Normal View History

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