Sha256: c5417b08ca84039bfb85d9196f49b96118671a981c5f3b4a1db629322db0b59d
Contents?: true
Size: 216 Bytes
Versions: 8
Compression:
Stored size: 216 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.text :content t.timestamps end end def self.down drop_table :posts end end
Version data entries
8 entries across 8 versions & 2 rubygems