styling added + better templates

This commit is contained in:
Smigz 2024-12-28 14:32:07 -05:00
parent 0a21838c91
commit 8c0a4a773e
10 changed files with 125 additions and 37 deletions

View file

@ -5,15 +5,15 @@ CREATE TABLE IF NOT EXISTS messages (
id INTEGER PRIMARY KEY ASC,
message TEXT,
username VARCHAR(25),
date TEXT
date NUMBER
);
INSERT INTO messages (message, username, date)
VALUES
('this is cool', 'smig.tech', '2024-12-24T01:12:340Z'),
('I like this app', 'smigz', '2024-12-25T00:32:43.540Z'),
('For real, it is nice', 'mikey', '2024-12-28T00:35:43.540Z')
('this is cool', 'smig.tech', '1735391440168.0'),
('I like this app', 'smigz', '1733577117'),
('For real, it is nice', 'mikey', '1735391626')
`;
async function main(db) {