Added demo for SQL Support

This commit is contained in:
2021-11-30 11:10:36 +01:00
parent d9f10edbb7
commit b526a07e19
10 changed files with 120 additions and 57 deletions

View File

@@ -18,9 +18,9 @@ class TableABC(ABC):
def LastModifiedAt(self) -> datetime:
return self._modified_at
@property
@staticmethod
@abstractmethod
def create_string(self) -> str: pass
def get_create_string() -> str: pass
@property
@abstractmethod