mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 14:16:19 +00:00
7 lines
172 B
MySQL
7 lines
172 B
MySQL
|
CREATE TABLE `db_best_selling` (
|
||
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
||
|
`fetched_at` integer NOT NULL,
|
||
|
`category` text NOT NULL,
|
||
|
`eans_json` text NOT NULL
|
||
|
);
|