Sha256: 5c8bb3a356d4ae4f032405429285f85148087615f7f3f8208a0ded7d66300510

Contents?: true

Size: 275 Bytes

Versions: 2

Compression:

Stored size: 275 Bytes

Contents

class CreatePeople < ActiveRecord::Migration
  def self.up
    create_table :people do |t|
      t.string :username
      t.integer :age
      t.datetime :joined_at
      t.integer :group_id

      t.timestamps
    end
  end

  def self.down
    drop_table :people
  end
end

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
msgpack-rails-0.0.1 test/dummy/db/migrate/20110926220233_create_people.rb
msgpack-rails-0.0.1 test/dummy_2_3_14/db/migrate/20110926220233_create_people.rb