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 notes
(
note_serial serial,
note_type varchar(20) default null,
note_reference bigint unsigned default 0,
note_text text,
note_timestamp timestamp default current_timestamp on update current_timestamp,
note_origin varchar(100) default null,
primary key (note_serial),
index (note_type),
index (note_reference),
index (note_timestamp)
)
default character set = utf8";
?>