From 964a855275fcff0a6fc8c1639cf09a859b19caa3 Mon Sep 17 00:00:00 2001 From: jacob Date: Tue, 22 Jun 2010 14:53:08 +0000 Subject: [PATCH] DB table for linking users to teams in events --- db/db.code.version.txt | 2 +- db/db.update.189.sql | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 db/db.update.189.sql diff --git a/db/db.code.version.txt b/db/db.code.version.txt index e702a30..6c41245 100644 --- a/db/db.code.version.txt +++ b/db/db.code.version.txt @@ -1 +1 @@ -188 +189 diff --git a/db/db.update.189.sql b/db/db.update.189.sql new file mode 100644 index 0000000..69db8f9 --- /dev/null +++ b/db/db.update.189.sql @@ -0,0 +1,5 @@ +CREATE TABLE IF NOT EXISTS `schedule_registrations_users_link` ( + `schedule_registrations_id` int(11) NOT NULL, + `users_uid` int(11) NOT NULL, + PRIMARY KEY (`schedule_registrations_id`,`users_uid`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8;