README in ae_users_legacy-0.6.11 vs README in ae_users_legacy-0.6.12

- old
+ new

@@ -21,12 +21,9 @@ alter table accounts add column person_id int; update accounts, people set accounts.person_id=people.id where accounts.id = people.account_id; alter table people drop column account_id; -create table open_id_identities (id int not null auto_increment primary key, - person_id int, identity_url varchar(4000)); - You'll also want to run this command in each of your application databases: create table auth_tickets (id int not null auto_increment primary key, secret varchar(40) unique, person_id int, created_at datetime, updated_at datetime, expires_at datetime);