Sha256: 206361ede1943f845bbafb4bdd6ab21231fe79394bcfb2f23b30b19853837d4b
Contents?: true
Size: 218 Bytes
Versions: 16
Compression:
Stored size: 218 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.string :content t.timestamps end end def self.down drop_table :posts end end
Version data entries
16 entries across 16 versions & 1 rubygems