From 75981a3e5ff076b7e1d0c86f0b39bf9994504ba4 Mon Sep 17 00:00:00 2001 From: Ajay Ramachandran Date: Tue, 15 Jun 2021 01:03:37 -0400 Subject: [PATCH] Fix copy mistake --- databases/_upgrade_sponsorTimes_13.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/databases/_upgrade_sponsorTimes_13.sql b/databases/_upgrade_sponsorTimes_13.sql index 39b7067..6dcb6ce 100644 --- a/databases/_upgrade_sponsorTimes_13.sql +++ b/databases/_upgrade_sponsorTimes_13.sql @@ -1,10 +1,10 @@ BEGIN TRANSACTION; -/* Add reputation field */ +/* Add locked field */ CREATE TABLE "sqlb_temp_table_13" ( "userID" TEXT NOT NULL, "userName" TEXT NOT NULL, - "locked" INTEGER NOT NULL default '0' + "locked" INTEGER NOT NULL default '0' ); INSERT INTO sqlb_temp_table_13 SELECT "userID", "userName", 0 FROM "userNames";