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/20110214111010_api_keys.rb

17 lines
314 B

class ApiKeysMigration < Sequel::Migration
def up
create_table :api_keys do
primary_key :id
String :api_key, :null => false, :unique => true, :index => true
Integer :user_id, :null => false
String :domain, :null => false
end
end
def down
drop_table :api_keys
end
end