Class: CreatePolyblockBlocks

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

Instance Method Summary collapse

Instance Method Details

#changeObject



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

def change
    create_table :polyblock_blocks do |t|
        t.string :name
        t.text :content
        t.integer :contentable_id
        t.string :contentable_type

        t.timestamps
    end
end