add column
This commit is contained in:
parent
17b0d37143
commit
52663399cd
|
|
@ -51,5 +51,6 @@ class StarsInvoice(AlchemyBase):
|
||||||
content_hash = Column(String(256), nullable=True)
|
content_hash = Column(String(256), nullable=True)
|
||||||
|
|
||||||
invoice_url = Column(String(256), nullable=True)
|
invoice_url = Column(String(256), nullable=True)
|
||||||
|
paid = Column(Boolean, nullable=False, default=False)
|
||||||
|
|
||||||
created = Column(DateTime, nullable=False, default=datetime.utcnow)
|
created = Column(DateTime, nullable=False, default=datetime.utcnow)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue