First git push to github

This commit is contained in:
2026-05-29 14:52:16 -04:00
commit 94bc6117f2
1576 changed files with 455304 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
$SQL = "create table projecttypes
(
projecttype_serial serial,
projecttype_name varchar(100) default null,
projecttype_creator varchar(100) default null,
projecttype_created datetime default null,
projecttype_changer varchar(100) default null,
projecttype_changed datetime default null,
primary key (projecttype_serial),
index (projecttype_name)
)
default character set = utf8";
?>