Class: CreateEditableContentEditables

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/editable_content/install/templates/create_editable_content_editables.rb

Instance Method Summary collapse

Instance Method Details

#changeObject



2
3
4
5
6
7
8
9
10
# File 'lib/generators/editable_content/install/templates/create_editable_content_editables.rb', line 2

def change
  create_table :editable_content_editables do |t|
    t.string :key
    t.text :text
    t.string :src

    t.timestamps
  end
end