Sha256: ac664cc46ecaadaad08939e4d0007ebe31fb400c4ea21b1202022d2d508c38b9

Contents?: true

Size: 193 Bytes

Versions: 2

Compression:

Stored size: 193 Bytes

Contents

class CreateBlogs < ActiveRecord::Migration
  def self.up
    create_table :blogs do |t|
      t.string :title
      t.timestamps
    end
  end

  def self.down
    drop_table :blogs
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
socialcast_shoulda_ext-0.1.4 test/rails3_root/db/migrate/20110411025326_create_blogs.rb
socialcast_shoulda_ext-0.1.2 test/rails3_root/db/migrate/20110411025326_create_blogs.rb