Sha256: 62f929205e286ef93e59abdf1a1d5ddd79eeb0c216eeabf4376c49bf656702d8
Contents?: true
Size: 324 Bytes
Versions: 16
Compression:
Stored size: 324 Bytes
Contents
class CreateAlmanacPosts < ActiveRecord::Migration def up create_table :almanac_posts do |t| t.string :title t.text :body t.boolean :published, :default => false t.references :blog t.references :author t.timestamps end end def down drop_table :almanac_posts end end
Version data entries
16 entries across 16 versions & 1 rubygems