mtgcoll/resources/migrations/00004_card_names_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

11 lines
353 B
SQL

CREATE TABLE card_names (
id SERIAL PRIMARY KEY,
card_id TEXT NOT NULL,
name TEXT NOT NULL
);
CREATE INDEX card_names_name_idx ON card_names (name);
ALTER TABLE ONLY card_names ADD CONSTRAINT card_names_card_id_fkey FOREIGN KEY (card_id) REFERENCES cards (id) ON DELETE CASCADE;
CREATE INDEX card_names_card_id_idx ON card_names (card_id);