Sha256: eab31eac4486ca6ac8d42698e6cd0954afa2724c71a00108b0461ba4fcebaf3c
Contents?: true
Size: 241 Bytes
Versions: 3
Compression:
Stored size: 241 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def up create_table :posts do |t| t.string :title t.text :body t.boolean :admin, default: false t.timestamps end end def down drop_table :posts end end
Version data entries
3 entries across 3 versions & 1 rubygems