Sha256: 09857d8eb883a23d69aca041dd05d75cbbf4a54c473968e23ef48a9353700c2d
Contents?: true
Size: 239 Bytes
Versions: 3
Compression:
Stored size: 239 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.text :body t.references :user t.timestamps end end def self.down drop_table :posts end end
Version data entries
3 entries across 3 versions & 1 rubygems