Sha256: 0413a086a1c511576bc109ff5010b9fd5242b703df1e2c07067524faf28336cd

Contents?: true

Size: 290 Bytes

Versions: 4

Compression:

Stored size: 290 Bytes

Contents

class CreateBlogComments < ActiveRecord::Migration
  def change
    create_table :mcms_blog_comments do |t|
      t.integer :blog_post_id
      t.boolean :spam
      t.string :name
      t.string :email
      t.text   :body
      t.string :state
      
      t.timestamps
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
mcms_blog-1.0.0 db/migrate/20120608072013_create_blog_comments.rb
mcms_blog-0.0.4 db/migrate/20120608072013_create_blog_comments.rb
mcms_blog-0.0.3 db/migrate/20120608072013_create_blog_comments.rb
mcms_blog-0.0.2 db/migrate/20120608072013_create_blog_comments.rb