Juna190825 commited on
Commit
d3d0768
·
verified ·
1 Parent(s): c717907

Create db/base.py

Browse files
Files changed (1) hide show
  1. app/db/base.py +5 -0
app/db/base.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
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"]