magnusmanske / petscan_rs

The repo for the PetScan tool
https://petscan.wmflabs.org/
GNU General Public License v3.0
43 stars 10 forks source link

Add database schema to GitHub #149

Closed maximmasiutin closed 5 months ago

maximmasiutin commented 6 months ago

Could you please consider adding database schema to GitHub, i.e. SQL statements that create all tables used by PetScan, i.e.:

CREATE TABLE started_queries (
    querystring VARCHAR(4095) NOT NULL,
    created VARCHAR(255) NOT NULL,
    process_id BIGINT NOT NULL,
    id BIGINT NOT NULL AUTO_INCREMENT,
    PRIMARY KEY(id)
);