home / colmem

committee_membership

Data source: See col-scraper on GitHub

0 rows where committee_id = 263

✎ View and edit SQL

This data as json

0 records

CREATE TABLE committee_membership(
        committee_id INTEGER REFERENCES committees(id),
        member_id INTEGER REFERENCES members(id),
        role VARCHAR(50)
    );
CREATE INDEX committee_membership_committee_id ON committee_membership("committee_id");
CREATE INDEX committee_membership_member_id ON committee_membership("member_id");
Powered by Datasette · Queries took 5.842ms · Data source: See col-scraper on GitHub