mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 06:16:18 +00:00
8 lines
202 B
SQL
8 lines
202 B
SQL
CREATE TABLE `precios` (
|
|
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
|
|
`ean` text NOT NULL,
|
|
`fetched_at` integer NOT NULL,
|
|
`precio_centavos` integer,
|
|
`in_stock` integer,
|
|
`url` text NOT NULL
|
|
);
|