Browse Source

Added follower column to points table

deadtom 2 tuần trước cách đây
mục cha
commit
0a7ecc2994
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      ownchatbot/schema.sql

+ 2 - 1
ownchatbot/schema.sql

@@ -9,7 +9,8 @@ CREATE TABLE IF NOT EXISTS points (
   points INTEGER,  
   user_authed BOOLEAN NOT NULL,
   email TEXT,
-  code INTEGER
+  code INTEGER,
+  followed TEXT
 );
 
 CREATE TABLE goals (