Sha256: 4ed5c5b8ff726e60f41351b536938446ba2c11098015f9881e8c7e88291ddccb

Contents?: true

Size: 609 Bytes

Versions: 41

Compression:

Stored size: 609 Bytes

Contents

class CreateComments < ActiveRecord::Migration
  
  def self.up
    create_table :comments do |t|
      t.text :body
      t.integer :page_id
      t.integer :author_id
      t.string :locale
      t.string :status, :default => 'pending'
      t.timestamps
    end
    add_index :comments, :page_id
    add_index :comments, :author_id
    add_index :comments, :locale
    add_index :comments, :status
  end
  
  def self.down
    drop_table :comments
    remove_index :comments, :page_id
    remove_index :comments, :author_id
    remove_index :comments, :locale
    remove_index :comments, :status
  end
end

Version data entries

41 entries across 41 versions & 1 rubygems

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