11 lines
199 B
Python
11 lines
199 B
Python
from sqlobject import *
|
|
|
|
sqlhub.processConnection = connectionForURI('sqlite:db.sqlite3')
|
|
|
|
|
|
class Subscriber(SQLObject):
|
|
user_id = StringCol(length=32)
|
|
|
|
|
|
Subscriber.createTable(ifNotExists=True)
|