pic_vert_app/db/migrate/20100826110736_create_people.rb
2013-01-08 23:28:47 +01:00

22 lines
395 B
Ruby

# -*- encoding : utf-8 -*-
class CreatePeople < ActiveRecord::Migration
def self.up
create_table :people do |t|
t.boolean :newsletter
t.string :surname
t.string :firstname
t.string :email
t.string :phone
t.string :job
t.references :sheet
t.integer :positon
t.timestamps
end
end
def self.down
drop_table :people
end
end