Cross Reference:
xref
: /
ontohub
/
db
/
migrate
/
20150329121431_create_api_keys.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
20150329121431_create_api_keys.rb revision 7e8d633ae2984c6f6c89c199c5308e682989bfbe
class
CreateApiKeys
<
ActiveRecord
::
Migration
def
change
create_table
:
api_keys
do
|t|
t.text
:
key
t.references
:
user
t.string
:
status
t.timestamps
end
add_index
:
api_keys
, :
key
,
unique
:
true
add_index
:
api_keys
, [:
user_id
, :
status
]
add_index
:
api_keys
, :
user_id
end
end