forked from science-ation/science-ation
15 lines
380 B
SQL
15 lines
380 B
SQL
ALTER TABLE `students` ADD `county` VARCHAR( 64 ) NULL DEFAULT NULL AFTER `city`;
|
|
INSERT INTO `config` (
|
|
`var` ,
|
|
`val` ,
|
|
`category` ,
|
|
`type` ,
|
|
`type_values` ,
|
|
`ord` ,
|
|
`description` ,
|
|
`year`
|
|
)
|
|
VALUES (
|
|
'participant_address_include_county', 'no', 'Participant Registration', 'yesno', '', '2100', 'Require that participants includes their county in their address.', '-1'
|
|
);
|