Initial commit

This commit is contained in:
2024-11-07 23:30:35 +01:00
commit ebad22fbee
9 changed files with 407 additions and 0 deletions

View File

@@ -0,0 +1 @@
drop table messages;

View File

@@ -0,0 +1,12 @@
create table messages (
id integer primary key autoincrement,
type int,
message text
);
insert into messages (id, type, message)
values (
1,
1,
'You are a helpful assistant. It is your task to aid the user as best as possible.'
);