preciazo/rust/migrations/20240712112531_precios-and-producto-urls.sql

21 lines
506 B
MySQL
Raw Normal View History

2024-07-13 15:43:24 +00:00
CREATE TABLE
precios (
id serial PRIMARY KEY NOT NULL,
ean text NOT NULL,
fetched_at integer NOT NULL,
precio_centavos integer,
in_stock integer,
url text NOT NULL,
warc_record_id text,
parser_version integer,
name text,
image_url text
);
CREATE TABLE
producto_urls (
id serial PRIMARY KEY NOT NULL,
url text NOT NULL,
first_seen integer NOT NULL,
last_seen integer NOT NULL
);