mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
5 lines
192 B
MySQL
5 lines
192 B
MySQL
|
CREATE TABLE `{$NAMESPACE}_harbormaster`.`lisk_counter` (
|
||
|
counterName VARCHAR(64) COLLATE utf8_bin PRIMARY KEY,
|
||
|
counterValue BIGINT UNSIGNED NOT NULL
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|