Added tune previews
This commit is contained in:
8
scripts/03_add_preview_url.py
Normal file
8
scripts/03_add_preview_url.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from folkugat_web.dal.sql import get_connection
|
||||
|
||||
with get_connection() as con:
|
||||
cur = con.cursor()
|
||||
alter_query = """ ALTER TABLE tema_scores ADD COLUMN preview_url TEXT"""
|
||||
_ = cur.execute(alter_query)
|
||||
|
||||
print("DONE!")
|
||||
Reference in New Issue
Block a user