mirror of
https://github.com/catdevnull/preciazo.git
synced 2024-11-22 06:16:18 +00:00
8 lines
No EOL
267 B
SQL
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`); |