Sha256: e013f4759092bb2d7aa2bd9076b0daa5da11ad9eaa5f4f33c6f8ac15efa05715

Contents?: true

Size: 446 Bytes

Versions: 5

Compression:

Stored size: 446 Bytes

Contents

class CreatePeople < ActiveRecord::Migration
  def change
    create_table :people do |t|
      t.string :first_name
      t.string :middle_name
      t.string :last_name
      t.string :nickname
      t.text :biography
      t.text :accomplishments
      t.text :activities
      t.text :currently
      t.text :citations
      t.integer :granduating_class
      t.text :term
      t.text :term_date_ranges

      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
kinney-0.1.1 db/migrate/20120608154325_create_people.rb
kinney-0.1.0 db/migrate/20120608154325_create_people.rb
kinney-0.0.3 db/migrate/20120608154325_create_people.rb
kinney-0.0.2 db/migrate/20120608154325_create_people.rb
kinney-0.0.1 db/migrate/20120608154325_create_people.rb