Sha256: ebcbee00c68da19e0815616959435bb11bfa3b24ed6979bfdad2fc4c0f7f8425

Contents?: true

Size: 694 Bytes

Versions: 39

Compression:

Stored size: 694 Bytes

Contents

class RocketCmsCreateNews < ActiveRecord::Migration[5.0]
  def change
    create_table :news do |t|
      t.boolean :enabled, default: true, null: false
      t.timestamp :time, null: false

      if RocketCMS.config.localize
        t.column :name_translations, 'hstore', default: {}
        t.column :excerpt_translations, 'hstore', default: {}
        t.column :content_translations, 'hstore', default: {}
      else
        t.string :name, null: false
        t.text :excerpt
        t.text :content
      end

      t.string :slug, null: false
      t.attachment :image
      t.timestamps
    end

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

Version data entries

39 entries across 39 versions & 1 rubygems

Version Path
rocket_cms-0.30.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.29.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.28.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.8 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.7 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.6 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.5 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.4 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.3 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.2 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.1 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.27.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.26.1 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.26.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.25.5 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.25.4 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.25.3 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.25.1 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.25.0 lib/generators/rocket_cms/templates/migration_news.rb
rocket_cms-0.24.0 lib/generators/rocket_cms/templates/migration_news.rb