parent
2e5762c029
commit
1c34b3f013
5 changed files with 67 additions and 6 deletions
|
@ -3,8 +3,10 @@ CREATE TABLE config (
|
|||
normaluservotepoints int NOT NULL,
|
||||
followervotepoints int NOT NULL,
|
||||
subscribervotepoints int NOT NULL,
|
||||
title varchar NOT NULL,
|
||||
colors jsonb NOT NULL,
|
||||
PRIMARY KEY (rowLock)
|
||||
);
|
||||
|
||||
INSERT INTO config (normalUserVotePoints,followerVotePoints,subscriberVotePoints)
|
||||
VALUES (10,50,100);
|
||||
INSERT INTO config (normalUserVotePoints,followerVotePoints,subscriberVotePoints,title,colors)
|
||||
VALUES (10,50,100,'{username}''s Learn Request Queue','{"bg": {"primary": "#444444","table": "#282828","navbar": "#666666","error": "#ff0000"},"fg": {"primary": "#dddddd","ahover": "#ffffff","title": "#eeeeee"}}');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue