first commit

This commit is contained in:
2026-07-03 15:46:56 -04:00
commit bf8532aa1e
1545 changed files with 450330 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
<?php
$SQL = "create table dropdowns
(
dropdown_serial serial,
dropdown_dropdowntype bigint unsigned default 0,
dropdown_value varchar(100) default null,
dropdown_default boolean default false,
dropdown_active boolean default false,
dropdown_creator varchar(100) default null,
dropdown_created datetime default null,
dropdown_changer varchar(100) default null,
dropdown_changed datetime default null,
primary key (dropdown_serial),
unique key (dropdown_dropdowntype, dropdown_value),
foreign key (dropdown_dropdowntype)
references dropdowntypes(dropdowntype_serial)
on update cascade
on delete restrict
)
default character set = utf8";
?>