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/20160916073131_create_legen...

21 lines
519 B

Sequel.migration do
up do
create_table :legends do
Uuid :id, primary_key: true, default: Sequel.lit('uuid_generate_v4()')
DateTime :created_at, default: Sequel::CURRENT_TIMESTAMP
DateTime :updated_at, default: Sequel::CURRENT_TIMESTAMP
Uuid :layer_id, type: 'uuid', null: false
String :title
String :pre_html
String :post_html
String :type, null: false
String :definition, null: false, type: 'json'
end
end
down do
drop_table :legends
end
end