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

Version Path
aguids-publishable-0.1.0 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.1 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.2 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.3 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.4 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.5 test/rails_root/db/migrate/20090731062231_create_posts.rb
aguids-publishable-0.1.6 test/rails_root/db/migrate/20090731062231_create_posts.rb