diff --git a/script.py b/script.py deleted file mode 100644 index a2b3158..0000000 --- a/script.py +++ /dev/null @@ -1,12 +0,0 @@ -import sqlite3 - -# Connect to the posts database -connection = sqlite3.connect('db/posts.db') -cursor = connection.cursor() - -# Rename the column from urlId to urlID -cursor.execute('ALTER TABLE posts RENAME COLUMN urlId TO urlID;') - -# Commit the changes and close the connection -connection.commit() -connection.close() \ No newline at end of file