Sha256: 667157a6e42b6f27c3a9c461dd9777d00e6b757007cd712011b5ef0e16fef167
Contents?: true
Size: 236 Bytes
Versions: 7
Compression:
Stored size: 236 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.string :title t.text :body t.string :status t.timestamps end end def self.down drop_table :posts end end
Version data entries
7 entries across 7 versions & 1 rubygems