BLACKED
This commit is contained in:
parent
03e51318b0
commit
b6c3c6a454
10 changed files with 819 additions and 654 deletions
|
|
@ -2,12 +2,13 @@ from sqlalchemy import Column, BigInteger, String
|
|||
|
||||
from .base import Base
|
||||
|
||||
class ResourceEntry(Base):
|
||||
__tablename__ = 'ResourceEntryRecord'
|
||||
__table_args__ = {'schema': 'ResourceEntry'}
|
||||
|
||||
path = Column(String, primary_key=True)
|
||||
serverPath = Column(String)
|
||||
localPath = Column(String)
|
||||
digest = Column(String)
|
||||
fileSize = Column(BigInteger)
|
||||
class ResourceEntry(Base):
|
||||
__tablename__ = "ResourceEntryRecord"
|
||||
__table_args__ = {"schema": "ResourceEntry"}
|
||||
|
||||
path = Column(String, primary_key=True)
|
||||
serverPath = Column(String)
|
||||
localPath = Column(String)
|
||||
digest = Column(String)
|
||||
fileSize = Column(BigInteger)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue