Cross Reference:
xref
: /
ontohub
/
app
/
models
/
nl.po
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
20120307143552_create_ontologies.rb revision cad2121a9e9a87317333b202956ce7478efcc257
class
CreateOntologies
<
ActiveRecord
::
Migration
def
change
create_table
:
ontologies
do
|t|
t.references
:
logic
t.string
:
uri
, :
null
=>
false
t.string
:
state
, :
default
=>
'pending'
, :
null
=>
false
t.string
:
name
t.text
:
description
t.timestamps
:
null
=>
false
end
change_table
:
ontologies
do
|t|
t.index
:
logic_id
t.foreign
_key
:
logics
end
end
end