Sha256: c426a0790ee2dd1d7331fd952e422673b86106fbdfa2d04a4666a4558fb0411e
Contents?: true
Size: 281 Bytes
Versions: 4
Compression:
Stored size: 281 Bytes
Contents
class CreatePosts < ActiveRecord::Migration def self.up create_table :posts do |t| t.boolean :published t.datetime t.string :title t.string :excerpt t.text :body t.timestamps end end def self.down drop_table :posts end end
Version data entries
4 entries across 4 versions & 1 rubygems