forked from science-ation/science-ation
18 lines
378 B
MySQL
18 lines
378 B
MySQL
|
INSERT INTO `config` (
|
||
|
`var` ,
|
||
|
`val` ,
|
||
|
`category` ,
|
||
|
`type` ,
|
||
|
`type_values` ,
|
||
|
`ord` ,
|
||
|
`description` ,
|
||
|
`year` ,
|
||
|
`conferences_id` ,
|
||
|
`section` ,
|
||
|
`conferencetypes`
|
||
|
)
|
||
|
VALUES (
|
||
|
'teacher_registration_type', 'invite', 'Teacher Registration', 'enum', 'open=Open|invite=Invite', '100', 'The type of Teacher Registration to use', '-1', '-1', 'conference', 'sciencefair,scienceolympics'
|
||
|
);
|
||
|
|