You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20160802075029_create_user_...

9 lines
261 B

Sequel.migration do
change do
create_table :user_notifications do
foreign_key :user_id, :users, type: :uuid, null: false, on_delete: :cascade, primary_key: true
String :notifications, null: false, type: 'json', default: '{}'
end
end
end