Initial commit

This commit is contained in:
2026-08-20 11:41:17 +00:00
commit 6949695eac
2334 changed files with 646393 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 = utf8mb4";
?>