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/20200330173736_create_dbdir...

18 lines
469 B

require 'carto/db/migration_helper'
include Carto::Db::MigrationHelper
migration(
Proc.new do
create_table :dbdirect_ips do
Uuid :id, primary_key: true, default: Sequel.lit('uuid_generate_v4()')
foreign_key :user_id, :users, type: :uuid, null: false, index: true, on_delete: :cascade
String :ips, null: true, type: 'json'
DateTime :created_at, null: false
end
end,
Proc.new do
drop_table :dbdirect_ips
end
)