This commit is contained in:
Samuel Sloniker 2023-06-06 16:56:06 -07:00
parent f5581175ae
commit b9ed0bf0d9
2 changed files with 15 additions and 0 deletions

5
adsms/__main__.py Normal file
View File

@ -0,0 +1,5 @@
# Partially written with ChatGPT
import adsms
adsms.main()

10
convert.py Normal file
View File

@ -0,0 +1,10 @@
import sqlite3
import sys
con = sqlite3.connect(sys.argv[1])
con.execute(
"ALTER TABLE subscriptions ADD COLUMN platform VARCHAR DEFAULT 'textbelt'"
)
con.commit()