git commit all base code

This commit is contained in:
2026-06-30 21:34:42 -04:00
parent 11fdf7b164
commit 1a643d7935
1452 changed files with 433360 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";
?>