10 lines
312 B
MySQL
10 lines
312 B
MySQL
|
CREATE TABLE vn.bankEntityConfig (
|
||
|
id INT auto_increment NULL,
|
||
|
bicLength TINYINT DEFAULT 11 NULL COMMENT 'Tamaño del campo bic',
|
||
|
CONSTRAINT bankEntityConfig_PK PRIMARY KEY (id)
|
||
|
)
|
||
|
ENGINE=InnoDB
|
||
|
DEFAULT CHARSET=utf8mb3
|
||
|
COLLATE=utf8mb3_unicode_ci;
|
||
|
|
||
|
INSERT INTO vn.bankEntityConfig (id, bicLength) VALUES(1, 11);
|