.
This commit is contained in:
parent
f5581175ae
commit
b9ed0bf0d9
5
adsms/__main__.py
Normal file
5
adsms/__main__.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
# Partially written with ChatGPT
|
||||
|
||||
import adsms
|
||||
|
||||
adsms.main()
|
10
convert.py
Normal file
10
convert.py
Normal 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()
|
Loading…
Reference in New Issue
Block a user