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

8 lines
124 B
Ruby

Sequel.migration do
change do
alter_table :users do
add_column :dashboard_viewed_at, DateTime
end
end
end