История изменений
Исправление ZuBB, (текущая версия) :
class CreatePeople < ActiveRecord::Migration
def change
create_table :people do |t|
t.string :name
t.string :phone
t.text :notes
t.references :person_role
t.timestamps
end
add_index :people, :person_role_id
end
end
20130125151957_create_people.rb (END)
если я понял правильно
Исходная версия ZuBB, :
class CreatePeople < ActiveRecord::Migration
def change
create_table :people do |t|
t.string :name
t.string :phone
t.text :notes
t.references :person_role
t.timestamps
end
add_index :people, :person_role_id
end
end
20130125151957_create_people.rb (END)
если я понял правильно