SQLite format 3@ ._  Č ¤ 9 Čo;' indexix_scrape_result_domainscrape_resultCREATE INDEX ix_scrape_result_domain ON scrape_result (domain)i7'indexix_scrape_result_pathscrape_resultCREATE INDEX ix_scrape_result_path ON scrape_result (path)„Y''ˆqtablescrape_resultscrape_resultCREATE TABLE scrape_result ( id INTEGER NOT NULL, domain VARCHAR NOT NULL, path VARCHAR NOT NULL, timestamp INTEGER NOT NULL, duration INTEGER NOT NULL, is_slow_request BOOLEAN NOT NULL, hitting_limits BOOLEAN NOT NULL, throttled_time INTEGER NOT NULL, io_throttled_time INTEGER NOT NULL, wordpress BOOLEAN NOT NULL, created_at DATETIME DEFAULT (CURRENT_TIMESTAMP), updated_at DATETIME DEFAULT (CURRENT_TIMESTAMP), PRIMARY KEY (id), CHECK (is_slow_request IN (0, 1)), CHECK (hitting_limits IN (0, 1)), CHECK (wordpress IN (0, 1)) )