cartodb/db/migrate/20131119150829_add_notification_to_users.rb

10 lines
144 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
up do
add_column :users, :notification, :text
end
down do
drop_column :users, :notification, :text
end
end