@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.)
hq.recaptime.dev/wiki/Phorge
phorge
phabricator
1CREATE TABLE `{$NAMESPACE}_harbormaster`.`lisk_counter` (
2 counterName VARCHAR(64) COLLATE utf8_bin PRIMARY KEY,
3 counterValue BIGINT UNSIGNED NOT NULL
4) ENGINE=InnoDB DEFAULT CHARSET=utf8;
5
6CREATE TABLE `{$NAMESPACE}_worker`.`lisk_counter` (
7 counterName VARCHAR(64) COLLATE utf8_bin PRIMARY KEY,
8 counterValue BIGINT UNSIGNED NOT NULL
9) ENGINE=InnoDB DEFAULT CHARSET=utf8;