We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07aad2a commit a43c42dCopy full SHA for a43c42d
1 file changed
test/sql_fixup.sql
@@ -1,5 +1,11 @@
1
-- This file holds needed corrections to the database until they have been applied to
2
-- the live database. This file is applied after importing a new dump of the live DB.
3
4
+-- making author_order mandatory
5
+alter table id_authors change author_order author_order int( 11 ) not null;
6
7
+-- changing aux. auth table - person_id can be null, and add
8
+-- the htdigest columns
9
+alter table ietfauth_usermap change person_id person_id int( 11 ) null;
10
+alter table ietfauth_usermap add `email_htdigest` varchar(32) NULL, add `rfced_htdigest` varchar(32) NULL;
11
0 commit comments