Sha256: 3f92b06fb4fa31f3f40f4e182e2ae3b4820f78b20f4dde987d71313fffc7c4b1
Contents?: true
Size: 248 Bytes
Versions: 44
Compression:
Stored size: 248 Bytes
Contents
class CreatePost < ActiveRecord::Migration def self.up create_table :posts do |t| t.integer :author_id t.string :title t.string :body t.timestamps end end def self.down drop_table :posts end end
Version data entries
44 entries across 22 versions & 1 rubygems