basketball-data-scraper icon indicating copy to clipboard operation
basketball-data-scraper copied to clipboard

league_season_scrape_module table lacks is_active field

Open shanusmagnus opened this issue 10 years ago • 1 comments

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.)

shanusmagnus avatar May 28 '15 17:05 shanusmagnus

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';

aboutaaron avatar Jun 02 '15 04:06 aboutaaron