Class: RocketCmsCreateNews
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- RocketCmsCreateNews
- Defined in:
- lib/generators/rocket_cms/templates/migration_news.rb
Instance Method Summary collapse
Instance Method Details
#change ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/generators/rocket_cms/templates/migration_news.rb', line 2 def change create_table :news do |t| t.boolean :enabled, default: true, null: false t. :time, null: false t.string :name, null: false t.text :excerpt t.text :content t.string :slug, null: false t. :image RocketCMS::Migration.seo_fields(t) t. end add_index :news, :slug, unique: true add_index :news, [:enabled, :time] end |