]> git.sesse.net Git - remoteglot/blobdiff - remoteglot.sql
Fix another Chess960 Chess.js issue.
[remoteglot] / remoteglot.sql
index 4ad748cfa086f03db462611f978e200de04865e9..af0456f03497abd2c5da832770c596103d1d7cc0 100644 (file)
@@ -1,7 +1,7 @@
 CREATE TABLE scores (
        id varchar primary key,
-       plot_score integer not null,
-       short_score varchar not null,
+       score_type varchar not null,
+       score_value integer,
        engine varchar not null,
        depth bigint not null,
        nodes bigint not null
@@ -19,5 +19,6 @@ CREATE TABLE current_games (
        id varchar not null primary key,
        json_path varchar not null,
        url varchar not null,
+       hashurl varchar not null,
        priority integer not null default 0,
 );