]> git.sesse.net Git - remoteglot/blobdiff - remoteglot.sql
Put a one-move PV on even the not-found hash probe entries, so they are selectable.
[remoteglot] / remoteglot.sql
index ed5d1d8f1d44c1c8beb2344f6697b8e8d7251f07..4ad748cfa086f03db462611f978e200de04865e9 100644 (file)
@@ -14,3 +14,10 @@ CREATE TABLE clock_info (
        white_clock_target integer,  -- FIXME: really timestamp with time zone
        black_clock_target integer   -- FIXME: really timestamp with time zone
 );
        white_clock_target integer,  -- FIXME: really timestamp with time zone
        black_clock_target integer   -- FIXME: really timestamp with time zone
 );
+
+CREATE TABLE current_games (
+       id varchar not null primary key,
+       json_path varchar not null,
+       url varchar not null,
+       priority integer not null default 0,
+);