mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +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;
|