14 lines
460 B
MySQL
14 lines
460 B
MySQL
|
CREATE TABLE vn.mdbConfig (
|
||
|
id int(10) unsigned auto_increment NOT NULL,
|
||
|
issueTrackerUrl varchar(255) NOT NULL,
|
||
|
issueNumberRegex varchar(255) NOT NULL,
|
||
|
CONSTRAINT mdbConfig_PK PRIMARY KEY (id)
|
||
|
)
|
||
|
ENGINE=InnoDB
|
||
|
DEFAULT CHARSET=utf8mb3
|
||
|
COLLATE=utf8mb3_unicode_ci
|
||
|
COMMENT='Global configuration parameters for Access';
|
||
|
|
||
|
INSERT INTO vn.mdbConfig (issueTrackerUrl, issueNumberRegex)
|
||
|
VALUES ('https://cau.verdnatura.es/scp/tickets.php?number={index}','#(\\d+)');
|