Displaying 1 result from an estimated 1 matches for "002_add_people".
2007 Dec 21
0
db:migrate problem
...e
sure it''s re-runnable, and it works no matter how many times I do it in a
row.
Within the cc rails app, however, I get a build failed message that one of
my migrations is broken. Specifically, it says there''s no index on
"people:login" My migrations are as follows:
002_add_people:
class CreatePeople < ActiveRecord::Migration
def self.up
create_table :people, :force => true do |t|
t.string :login
t.string :email
t.string :crypted_password, :limit => 40
t.string :salt, :limit => 40
t.timestamps...