mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-28 21:05:36 -04:00
styling added + better templates
This commit is contained in:
parent
0a21838c91
commit
8c0a4a773e
10 changed files with 125 additions and 37 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue