new go version, new upstream versions
This commit is contained in:
parent
08c708de12
commit
22bcecc9b3
@ -5,7 +5,7 @@ stages:
|
||||
variables:
|
||||
IMAGE_NAME: registry.hottis.de/dockerized/mosquitto-with-auth
|
||||
HUB_IMAGE_NAME: wollud1969/mosquitto-with-auth
|
||||
GO_BINARIES: go1.12.6.linux-amd64.tar.gz
|
||||
GO_BINARIES: go1.14.4.linux-amd64.tar.gz
|
||||
build:
|
||||
stage: build
|
||||
image: registry.hottis.de/dockerized/base-build-env:latest
|
||||
|
@ -15,9 +15,10 @@ CREATE TABLE acls_t (
|
||||
id INTEGER AUTO_INCREMENT,
|
||||
user INTEGER NOT NULL,
|
||||
topic VARCHAR(256) NOT NULL,
|
||||
rw INTEGER(1) NOT NULL DEFAULT 1, -- 1 is read, 2 is write, 3 is readwrite, 4 is subscribe
|
||||
-- rw, bitmask: 1 is read, 2 is write, 3 is readwrite, 4 is subscribe
|
||||
rw INTEGER(1) NOT NULL DEFAULT 1,
|
||||
PRIMARY KEY (id),
|
||||
CONSTRAINT `fk_book_author`
|
||||
CONSTRAINT `fk_user_acl`
|
||||
FOREIGN KEY (user) REFERENCES users_t (id)
|
||||
ON DELETE CASCADE
|
||||
ON UPDATE CASCADE
|
||||
|
Loading…
x
Reference in New Issue
Block a user