Sha256: f2d284a0a3fbf561ff72ca7cc69bcc408a91acc3164a35c15d896c651715744f
Contents?: true
Size: 238 Bytes
Versions: 7
Compression:
Stored size: 238 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
7 entries across 7 versions & 2 rubygems