fix misprint
This commit is contained in:
parent
276a09fbf6
commit
a35481fa71
|
|
@ -3,7 +3,7 @@ from sqlalchemy import Column, BigInteger, Integer, String, ForeignKey, DateTime
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
class PromoAction:
|
class PromoAction(AlchemyBase):
|
||||||
__tablename__ = 'promo_actions'
|
__tablename__ = 'promo_actions'
|
||||||
|
|
||||||
id = Column(Integer, autoincrement=True, primary_key=True)
|
id = Column(Integer, autoincrement=True, primary_key=True)
|
||||||
|
|
|
||||||
|
|
@ -3,7 +3,7 @@ from sqlalchemy import Column, BigInteger, Integer, String, ForeignKey, DateTime
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
|
||||||
class BlockchainTask:
|
class BlockchainTask(AlchemyBase):
|
||||||
__tablename__ = 'blockchain_tasks'
|
__tablename__ = 'blockchain_tasks'
|
||||||
|
|
||||||
id = Column(Integer, autoincrement=True, primary_key=True)
|
id = Column(Integer, autoincrement=True, primary_key=True)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue