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/20140314101744_create_synch...

17 lines
415 B

Sequel.migration do
up do
create_table :synchronization_oauths do
primary_key :id
Uuid :user_id, index: true
Text :service, index: true
Text :token
DateTime :created_at, default: Sequel::CURRENT_TIMESTAMP
DateTime :updated_at, default: Sequel::CURRENT_TIMESTAMP
end
end
down do
drop_table :synchronization_oauths
end
end