basketball-data-scraper
basketball-data-scraper copied to clipboard
league_season_scrape_module table lacks is_active field
This field is referred to in the code, and is missing from the created schema. (Not sure whether the schema or the code is correct yet.)
I solved this by just adding the field to the column:
ALTER TABLE league_season_scrape_module ADD is_active tinyint(4) NOT NULL DEFAULT '0';