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