Sha256: 9fa8605911676904a25ee2d9c99f106e7e1c6fcfac5737fd3de2d37e878c54ad

Contents?: true

Size: 259 Bytes

Versions: 1

Compression:

Stored size: 259 Bytes

Contents

class CreateBlockLayouts < ActiveRecord::Migration[5.1]
  def change
    create_table :block_layouts do |t|
      t.string :slug
      t.string :display_name
      t.text :description

      t.timestamps
    end

    add_index :block_layouts, :slug
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
forest_cms-0.98.1 db/migrate/20170818025124_create_block_layouts.rb