Initial commit

This commit is contained in:
2018-11-20 22:51:15 +03:00
commit 205b373fbd
9 changed files with 433 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
from sqlobject import *
sqlhub.processConnection = connectionForURI('sqlite:db.sqlite3')
class Subscriber(SQLObject):
user_id = StringCol(length=32)
Subscriber.createTable(ifNotExists=True)