mirror of
https://github.com/StanGirard/quivr.git
synced 2024-11-24 05:55:13 +03:00
02f58c84b8
* docs(readme): making it nice * docs(logo): made round
12 lines
382 B
SQL
12 lines
382 B
SQL
create table
|
|
stats (
|
|
-- A column called "time" with data type "timestamp"
|
|
time timestamp,
|
|
-- A column called "details" with data type "text"
|
|
chat boolean,
|
|
embedding boolean,
|
|
details text,
|
|
metadata jsonb,
|
|
-- An "integer" primary key column called "id" that is generated always as identity
|
|
id integer primary key generated always as identity
|
|
); |