Sha256: 2590898d68462e601bae86d22f3969d7df0d769e1b0d85771c9f1411aa6b38d0

Contents?: true

Size: 216 Bytes

Versions: 3

Compression:

Stored size: 216 Bytes

Contents

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

      t.timestamps
    end
  end

  def self.down
    drop_table :blogs
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
induction_cannon_01-0.0.5 db/migrate/20110302022059_create_blogs.rb
induction_cannon_01-0.0.3 db/migrate/20110302022059_create_blogs.rb
induction_cannon_01-0.0.2 db/migrate/20110302022059_create_blogs.rb