Sha256: 1cbc94e1949006c9d0356e03740f581c8cf941e1bcb804ee74fb8143aa890bf0

Contents?: true

Size: 350 Bytes

Versions: 4

Compression:

Stored size: 350 Bytes

Contents

class CreateHomePageFeatures < ActiveRecord::Migration
  def change
    create_table :home_page_features do |t|
      t.string :title, :null => false
      t.text :body, :null => false
      t.string :style
      t.boolean :publish, :null => false, :default => false

      t.timestamps
    end

    add_index :home_page_features, :publish
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
spree_home_page_features-1.2.5 db/migrate/20120711073050_create_home_page_features.rb
spree_home_page_features-1.2.4 db/migrate/20120711073050_create_home_page_features.rb
spree_home_page_features-1.2.3 db/migrate/20120711073050_create_home_page_features.rb
spree_home_page_features-1.2.2 db/migrate/20120711073050_create_home_page_features.rb