DB table for linking users to teams in events

This commit is contained in:
jacob 2010-06-22 14:53:08 +00:00
parent 54f6a2e251
commit 964a855275
2 changed files with 6 additions and 1 deletions

View File

@ -1 +1 @@
188
189

5
db/db.update.189.sql Normal file
View File

@ -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;