Sha256: 651269f278f02e85e9feca6155125789ed4eae0a6db3b958018044241be3ea2b

Contents?: true

Size: 243 Bytes

Versions: 1

Compression:

Stored size: 243 Bytes

Contents

class CreatePeople < ActiveRecord::Migration
  def change
    create_table :people do |t|
      t.string :name
      t.string :mother
      t.string :father
      t.date :birthdate
      t.integer :gender

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unico-training-7.8.0 db/migrate/20110429235848_create_people.rb