Sha256: 206361ede1943f845bbafb4bdd6ab21231fe79394bcfb2f23b30b19853837d4b

Contents?: true

Size: 218 Bytes

Versions: 16

Compression:

Stored size: 218 Bytes

Contents

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

      t.timestamps
    end
  end

  def self.down
    drop_table :posts
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
on_the_spot-1.1.5 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.1.4 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.1.3 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.1.2 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.1.0 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.6 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.5 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.4 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.3 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.2 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.1 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-1.0.0 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-0.0.18 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-0.0.17 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-0.0.16 spec/dummy/db/migrate/20110724190901_create_posts.rb
on_the_spot-0.0.14 spec/dummy/db/migrate/20110724190901_create_posts.rb