Sha256: 94e6351998690ca1227390a7a9e537c33ca3ed374f01b4a2a5cffb80f94115a2
Contents?: true
Size: 241 Bytes
Versions: 77
Compression:
Stored size: 241 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.integer :user_id t.string :title t.text :body t.timestamps end end def self.down drop_table :posts end end
Version data entries
77 entries across 77 versions & 2 rubygems