mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-25 19:16:19 +00:00
9 lines
202 B
MySQL
9 lines
202 B
MySQL
|
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
|
||
|
);
|