slightly more paranoid database schema:.

made column 'program' in table 'versions' be not null, and unique.
optimally you would want a unique index on 'value' and 'program' but
indexes are not supported on datatype 'tinytext' until mysql 3.23
This commit is contained in:
cyeh%bluemartini.com 2000-04-26 19:12:17 +00:00
Родитель 3b09915fa5
Коммит 7f56ec2b6c
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -735,8 +735,9 @@ $table{fielddefs} =
$table{versions} =
'value tinytext,
program varchar(64)';
program varchar(64) not null,
unique(program)';
$table{votes} =
'who mediumint not null,