Cross Reference:
xref
: /
ontohub
/
db
/
migrate
/
20130413085749_create_oops_responses.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
20130413085749_create_oops_responses.rb revision de68e21ab7c82f21db445d619b211c7aaa6f22c9
class
CreateOopsResponses
<
ActiveRecord
::
Migration
def
change
create_table
:
oops_responses
do
|t|
t.references
:
oops_request
,
null
:
false
t.integer
:
code
t.string
:
name
,
null
:
false
t.string
:
description
t.string
:
type
,
null
:
false
t.timestamps
null
:
false
end
change_table
:
oops_responses
do
|t|
t.index
:
oops_request_id
end
end
end