Initial commit
This commit is contained in:
1
migrations/1_initial.down.sql
Normal file
1
migrations/1_initial.down.sql
Normal file
@@ -0,0 +1 @@
|
||||
drop table messages;
|
||||
12
migrations/1_initial.up.sql
Normal file
12
migrations/1_initial.up.sql
Normal 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.'
|
||||
);
|
||||
Reference in New Issue
Block a user