This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lastUpload":"2020-06-06T08:10:43.943Z","extensionVersion":"v3.4.3"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE CONSTRAINT user_username_unique IF NOT EXISTS ON (n:User) ASSERT n.username IS UNIQUE; | |
CREATE CONSTRAINT user_email_unique IF NOT EXISTS ON (n:User) ASSERT n.email IS UNIQUE; | |
CREATE CONSTRAINT user_id_unique IF NOT EXISTS ON (n:User) ASSERT n.id IS UNIQUE; | |
CREATE CONSTRAINT tag_name_unique IF NOT EXISTS ON (n:Tag) ASSERT n.name IS UNIQUE; | |
CREATE CONSTRAINT tag_id_unique IF NOT EXISTS ON (n:Tag) ASSERT n.id IS UNIQUE; | |
CREATE CONSTRAINT model_id_unique IF NOT EXISTS ON (n:Model) ASSERT n.id IS UNIQUE; | |
CREATE CONSTRAINT collection_id_unique IF NOT EXISTS ON (n:Collection) ASSERT n.id IS UNIQUE; | |
CREATE CONSTRAINT file_id_unique IF NOT EXISTS ON (n:File) ASSERT n.id IS UNIQUE; | |
CALL db.index.fulltext.createNodeIndex("modelNamesAndDescriptions", ["Model"], ["name", "description"], {analyzer: "english"}); | |
CREATE INDEX user_id_index IF NOT EXISTS FOR (n:User) ON (n.id); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Open in Steam | |
// @namespace http://tampermonkey.net/ | |
// @version 1.0.0 | |
// @description Adds a button on Steam store page that can be used to open that page inside the Steam client; | |
// @author The24thDS | |
// @match https://store.steampowered.com/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=steampowered.com | |
// @grant none | |
// ==/UserScript== |