Spaces:
Sleeping
Sleeping
Update app/db/base.py
Browse files- app/db/base.py +2 -0
app/db/base.py
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
|
|
| 1 |
from app.models.dictionary_entry import DictionaryEntry
|
| 2 |
from app.models.suggestion import Suggestion
|
| 3 |
|
|
|
|
| 4 |
# Imported so SQLAlchemy knows about models when creating tables
|
| 5 |
__all__ = ["DictionaryEntry", "Suggestion"]
|
|
|
|
| 1 |
+
from app.db import Base
|
| 2 |
from app.models.dictionary_entry import DictionaryEntry
|
| 3 |
from app.models.suggestion import Suggestion
|
| 4 |
|
| 5 |
+
|
| 6 |
# Imported so SQLAlchemy knows about models when creating tables
|
| 7 |
__all__ = ["DictionaryEntry", "Suggestion"]
|