Skip to content
Snippets Groups Projects

Update SetRole/SetUserTitle so that you have to be subscribed to get it, also...

Merged Howo requested to merge feature/role-only-if-subscribed into develop
Compare and Show latest version
5 files
+ 366
294
Compare changes
  • Side-by-side
  • Inline
Files
5
@@ -85,9 +85,9 @@ class OperationBase:
def push(self) -> None:
sql = """
INSERT INTO
hive.operations (id, block_num, trx_in_block, op_pos, op_type_id, timestamp, body)
hive.operations (id, block_num, trx_in_block, op_pos, op_type_id, timestamp, body_binary)
VALUES
(:id, :block_num, -2, -2, :op_type_id, now(), :body :: hive.operation);
(:id, :block_num, -2, -2, :op_type_id, now(), :body :: jsonb :: hive.operation);
"""
OperationBase.operation_id += 1
Loading