Gregniuki commited on
Commit
cd9f2c8
·
1 Parent(s): bafa0db

Create base.py

Browse files
Files changed (1) hide show
  1. base.py +5 -0
base.py ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ # base.py
2
+
3
+ from sqlalchemy.ext.declarative import declarative_base
4
+
5
+ Base = declarative_base()