catalogs
Data license: CC0 · Data source: github.com/rikker/video8
- id
- ID
- title
- Catalog Title
- year
- Year
- publisher_id
- Publisher
- notes
- Notes
- scan_url
- Scan URL
0 rows where publisher_id = 116
This data as json
0 records
CREATE TABLE catalogs (
id INTEGER PRIMARY KEY,
title TEXT NOT NULL,
year INTEGER,
publisher_id INTEGER REFERENCES publishers(id),
notes TEXT,
scan_url TEXT
);