Cross Reference:
xref
: /
ontohub
/
db
/
migrate
/
20130413085750_create_oops_responses_entities.rb
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
20130413085750_create_oops_responses_entities.rb revision de68e21ab7c82f21db445d619b211c7aaa6f22c9
class
CreateOopsResponsesEntities
<
ActiveRecord
::
Migration
def
change
create_table
:
oops_responses_entities
do
|t|
t.references
:
oops_response
,
null
:
false
t.references
:
entity
,
null
:
false
end
change_table
:
oops_responses_entities
do
|t|
t.index
[:
oops_response_id
, :
entity_id
]
t.foreign
_key
:
oops_responses
,
dependent
: :
delete
t.foreign
_key
:
entities
end
end
end