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
+22
View File
@@ -0,0 +1,22 @@
<?php
$SQL = "create table historycodes
(
historycode_serial serial,
historycode_code char(1) default null,
historycode_description varchar(120) default null,
historycode_active boolean default true,
historycode_creator varchar(100) default null,
historycode_created datetime default null,
historycode_changer varchar(100) default null,
historycode_changed datetime default null,
primary key (historycode_serial)
)
default character set = utf8";
?>