mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-29 01:08:54 +00:00
fix(SQL): fixed missing column
Fixed missing column for esx_banking
This commit is contained in:
@@ -1011,6 +1011,7 @@ CREATE TABLE IF NOT EXISTS `banking` (
|
|||||||
`time` bigint(20) DEFAULT NULL,
|
`time` bigint(20) DEFAULT NULL,
|
||||||
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
`ID` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`balance` int(11) DEFAULT 0,
|
`balance` int(11) DEFAULT 0,
|
||||||
|
`label` varchar(255) DEFAULT NULL,
|
||||||
PRIMARY KEY (`ID`)
|
PRIMARY KEY (`ID`)
|
||||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
|
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user