preciazo/db-datos/drizzle/0009_breezy_forge.sql

8 lines
267 B
MySQL
Raw Normal View History

2023-12-30 00:49:32 +00:00
CREATE TABLE `producto_urls` (
`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL,
`url` text NOT NULL,
`first_seen` integer NOT NULL,
`last_seen` integer NOT NULL
);
--> statement-breakpoint
CREATE UNIQUE INDEX `producto_urls_url_unique` ON `producto_urls` (`url`);