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.
trustieforge/db/migrate/20160428065243_create_sub_d...

18 lines
391 B

class CreateSubDocumentComments < ActiveRecord::Migration
def change
create_table :sub_document_comments do |t|
t.text :content
t.text :title
t.integer :sub_domain_id
t.integer :creator_id
t.integer :parent_id
t.integer :reply_id
t.integer :locked
t.integer :sticky
t.integer :org_subfield_id
t.timestamps
end
end
end