Sha256: adead2c721bfa4877ef180e78bd5b97356e112117189f11ebba04f942c4c19f7

Contents?: true

Size: 542 Bytes

Versions: 44

Compression:

Stored size: 542 Bytes

Contents

class CreatePages < ActiveRecord::Migration
  
  def self.up
    create_table :pages do |t|
      t.string :title
      t.text :description
      t.text :body
      t.boolean :for_blog, default: false
      t.datetime  :published_at
      t.timestamps
    end
    add_index :pages, :published_at
    Page.create_translation_table! :title => :string, :short_title => :string, :description => :text, :body => :text
  end
  
  def self.down
    drop_table :pages
    Page.drop_translation_table!
    remove_index :pages, :published_at
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
tkh_content-0.10.10 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.9 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.8 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.7 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.6 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.5.1 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.5 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.4 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.3 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.2 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10.1 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.10 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.20 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.19 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.18 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.17 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.16 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.15 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.14 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb
tkh_content-0.9.13 lib/generators/tkh_content/create_or_update_migrations/templates/create_pages.rb