From ebbac49b4b97eb586e8d08d0ecae7e685a979e09 Mon Sep 17 00:00:00 2001 From: dave Date: Sat, 22 Dec 2007 23:44:46 +0000 Subject: [PATCH] - Add the database stuff for the name check.. oops. --- db/db.code.version.txt | 2 +- db/db.update.89.sql | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 db/db.update.89.sql diff --git a/db/db.code.version.txt b/db/db.code.version.txt index d22307c4..8643cf6d 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -88 +89 diff --git a/db/db.update.89.sql b/db/db.update.89.sql new file mode 100644 index 00000000..a2c51967 --- /dev/null +++ b/db/db.update.89.sql @@ -0,0 +1 @@ +ALTER TABLE `students` ADD `namecheck_complete` ENUM( 'no', 'yes' ) NOT NULL DEFAULT 'no';