Method: Contentable::MigrationHelper#create_content_items

Defined in:
lib/contentable.rb

#create_content_itemsObject



102
103
104
105
106
107
108
109
110
111
# File 'lib/contentable.rb', line 102

def create_content_items
  create_table :content_items do |t|
    t.string :name
    t.string :title
    t.string :description
    t.text :text
    
    t.timestamps
  end
end