datatracker/test/sql_fixup.sql
Bill Fenner a43c42d7a9 Alter ietfauth_usermap for the sprint changes that were
integrated.
 - Legacy-Id: 1159
2008-04-24 15:19:25 +00:00

12 lines
549 B
SQL

-- This file holds needed corrections to the database until they have been applied to
-- the live database. This file is applied after importing a new dump of the live DB.
-- making author_order mandatory
alter table id_authors change author_order author_order int( 11 ) not null;
-- changing aux. auth table - person_id can be null, and add
-- the htdigest columns
alter table ietfauth_usermap change person_id person_id int( 11 ) null;
alter table ietfauth_usermap add `email_htdigest` varchar(32) NULL, add `rfced_htdigest` varchar(32) NULL;