mtgcoll/resources/migrations/00007_collection_table.up.sql
Gered aca45d9631 major reworking of various data and image importing/scraping operations
can now run the application from the command line to invoke the various
data import/update or image scraping operations.

removed all copies of scraped set/symbol/mana images
2016-06-28 19:16:04 -04:00

12 lines
529 B
SQL

CREATE TABLE collection (
id SERIAL PRIMARY KEY,
card_id TEXT NOT NULL,
quality TEXT NOT NULL CHECK (quality IN
('online', 'near mint', 'lightly played', 'moderately played', 'heavily played', 'damaged')),
quantity INT NOT NULL CHECK (quantity >= 0),
UNIQUE (card_id, quality)
);
ALTER TABLE ONLY collection ADD CONSTRAINT collection_card_id_fkey FOREIGN KEY (card_id) REFERENCES cards (id) ON DELETE CASCADE;
CREATE INDEX collection_card_id_idx ON collection (card_id);