Sha256: 8715e55c2203c2884bda8a155084d2eabd723b422f1a54bf326c79cebcf4ed65
Contents?: true
Size: 227 Bytes
Versions: 47
Compression:
Stored size: 227 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def up create_table :posts do |t| t.string :title t.text :body t.integer :user_id t.timestamps end end def down drop_table :posts end end
Version data entries
47 entries across 47 versions & 1 rubygems