Sha256: 701b2f6f8b951ce55d26aa094882958dc0f2f33371532c7c60e78662e5eaebf4
Contents?: true
Size: 274 Bytes
Versions: 20
Compression:
Stored size: 274 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.string :description t.integer :blog_id t.integer :author_id t.timestamps end end def self.down drop_table :posts end end
Version data entries
20 entries across 20 versions & 1 rubygems