Juna190825 commited on
Commit
3d1e733
·
verified ·
1 Parent(s): 2159bd2

Update app/db/base.py

Browse files
Files changed (1) hide show
  1. 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"]