mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-09-01 02:38:53 +00:00
Update esx_billing.sql
int - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
+2
-2
@@ -1,13 +1,13 @@
|
||||
USE `es_extended`;
|
||||
|
||||
CREATE TABLE `billing` (
|
||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||
`id` int NOT NULL AUTO_INCREMENT,
|
||||
`identifier` varchar(40) NOT NULL,
|
||||
`sender` varchar(40) NOT NULL,
|
||||
`target_type` varchar(50) NOT NULL,
|
||||
`target` varchar(40) NOT NULL,
|
||||
`label` varchar(255) NOT NULL,
|
||||
`amount` int(11) NOT NULL,
|
||||
`amount` int NOT NULL,
|
||||
|
||||
PRIMARY KEY (`id`)
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user