forked from science-ation/science-ation
DB table for linking users to teams in events
This commit is contained in:
parent
54f6a2e251
commit
964a855275
@ -1 +1 @@
|
||||
188
|
||||
189
|
||||
|
5
db/db.update.189.sql
Normal file
5
db/db.update.189.sql
Normal 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;
|
Loading…
Reference in New Issue
Block a user