Sha256: c5417b08ca84039bfb85d9196f49b96118671a981c5f3b4a1db629322db0b59d

Contents?: true

Size: 216 Bytes

Versions: 8

Compression:

Stored size: 216 Bytes

Contents

class CreatePosts < ActiveRecord::Migration
  def self.up
    create_table :posts do |t|
      t.string :title
      t.text :content

      t.timestamps
    end
  end

  def self.down
    drop_table :posts
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
google_authentication-0.3.0 spec/dummy/db/migrate/20110630105039_create_posts.rb
google_authentication-0.2.0 spec/dummy/db/migrate/20110630105039_create_posts.rb
sunrise-scaffold-0.2.2 test/dummy/db/migrate/20110722084440_create_posts.rb
sunrise-scaffold-0.2.1 test/dummy/db/migrate/20110722084440_create_posts.rb
sunrise-scaffold-0.2.0 test/dummy/db/migrate/20110722084440_create_posts.rb
google_authentication-0.1.2 spec/dummy/db/migrate/20110630105039_create_posts.rb
google_authentication-0.1.1 spec/dummy/db/migrate/20110630105039_create_posts.rb
google_authentication-0.1.0 spec/dummy/db/migrate/20110630105039_create_posts.rb