forked from science-ation/science-ation
16 lines
419 B
MySQL
16 lines
419 B
MySQL
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `judges_jdiv`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `judges_jdiv` (
|
||
|
`id` int(10) unsigned NOT NULL auto_increment,
|
||
|
`jdiv_id` int(11) NOT NULL default '0',
|
||
|
`projectdivisions_id` int(11) NOT NULL default '0',
|
||
|
`projectcategories_id` int(11) NOT NULL default '0',
|
||
|
`lang` char(2) NOT NULL default '',
|
||
|
PRIMARY KEY (`id`)
|
||
|
) TYPE=MyISAM;
|
||
|
|