Raise Bitcoin, Particl and Monero versions.

This commit is contained in:
tecnovert
2021-06-25 23:02:54 +02:00
parent c1039c425d
commit 398ef268a6
3 changed files with 39 additions and 23 deletions

View File

@@ -4,18 +4,23 @@
# Distributed under the MIT software license, see the accompanying
# file LICENSE or http://www.opensource.org/licenses/mit-license.php.
import struct
import time
import struct
import sqlalchemy as sa
from sqlalchemy.ext.declarative import declarative_base
from enum import IntEnum, auto
from sqlalchemy.ext.declarative import declarative_base
CURRENT_DB_VERSION = 8
Base = declarative_base()
class TableTypes(IntEnum):
OFFER = auto()
BID = auto()
class DBKVInt(Base):
__tablename__ = 'kv_int'
@@ -349,6 +354,13 @@ class RevokedMessage(Base):
expires_at = sa.Column(sa.BigInteger)
class TableTypes(IntEnum):
OFFER = auto()
BID = auto()
class Wallets(Base):
__tablename__ = 'wallets'
record_id = sa.Column(sa.Integer, primary_key=True, autoincrement=True)
coin_id = sa.Column(sa.Integer)
wallet_name = sa.Column(sa.String)
balance_type = sa.Column(sa.Integer)
amount = sa.Column(sa.BigInteger)
updated_at = sa.Column(sa.BigInteger)
created_at = sa.Column(sa.BigInteger)