preciazo/rust/migrations/20240712112948_create-best-selling.sql
2024-07-13 12:43:24 -03:00

7 lines
No EOL
182 B
SQL

CREATE TABLE
db_best_selling (
id serial PRIMARY KEY NOT NULL,
fetched_at integer NOT NULL,
category text NOT NULL,
eans_json text NOT NULL
);