Sha256: 1dae2ba5a9072b39e1a98a27ba4fd9843d7243515c91b6dc411e94b064256bc8

Contents?: true

Size: 485 Bytes

Versions: 66

Compression:

Stored size: 485 Bytes

Contents

class RocketCmsCreateNews < ActiveRecord::Migration
  def change
    create_table :news do |t|
      t.boolean :enabled, default: true, null: false
      t.timestamp :time, null: false
      t.string :name, null: false
      t.text :excerpt
      t.text :content

      t.string :slug, null: false
      t.attachment :image
      RocketCMS::Migration.seo_fields(t)

      t.timestamps
    end

    add_index :news, :slug, unique: true
    add_index :news, [:enabled, :time]
  end
end

Version data entries

66 entries across 66 versions & 2 rubygems

Version Path
rocket_cms-0.7.1 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.7.1 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.7 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.6.4 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.6.3 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.6.2 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.6.1 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.6 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.7.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.18 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.17 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.16 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.5.2 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.15 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.14 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.5.1 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.6.13 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.5 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.4.1 lib/generators/rocket_cms/templates/migration_news.rb
ack_rocket_cms-0.7.4 lib/generators/rocket_cms/templates/migration_news.rb