Sha256: bbabfed344c1566ebc6633c0695b6f451c59e2e32761474dae669a86a856b158
Contents?: true
Size: 371 Bytes
Versions: 5
Compression:
Stored size: 371 Bytes
Contents
class CreateBlogitComments < ActiveRecord::Migration def change create_table :blogit_comments do |t| t.string :name, null: false t.string :email, null: false t.string :website t.text :body, null: false t.references :post, null: false t.string :state t.timestamps end add_index :blogit_comments, :post_id end end
Version data entries
5 entries across 5 versions & 1 rubygems