mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-18 08:02:03 +03:00
12 lines
382 B
MySQL
12 lines
382 B
MySQL
|
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
|
||
|
);
|