preciazo/db-datos/drizzle/0009_breezy_forge.sql
2023-12-29 21:49:32 -03:00

8 lines
No EOL
267 B
SQL

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`);