llamachat/migrations/1_initial.up.sql

13 lines
268 B
SQL

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.'
);