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
+20
View File
@@ -0,0 +1,20 @@
<?php
$SQL = "create table journal
(
journal_serial serial,
journal_timestamp timestamp default current_timestamp,
journal_origin varchar(100) default null,
journal_ip varchar(128) default null,
journal_entry varchar(1000) default null,
primary key (journal_serial),
index (journal_timestamp)
)
default character set = utf8";
?>