cartodb/db/migrate/20130807104954_add_upgraded_at_to_users.rb

8 lines
116 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 :upgraded_at, DateTime
end
end
end