Add position column to links table

This commit is contained in:
William 2021-03-08 21:16:11 -05:00
parent 2e1344d49a
commit b4a996023a
1 changed files with 7 additions and 7 deletions

View File

@ -3,17 +3,17 @@ con = sqlite3.connect('links.db')
# array of links to store
links = [
('http://csclub.uwaterloo.ca/','CS Club Website',3,1),
('https://www.instagram.com/uwcsclub/','Instagram',4,1),
('https://www.facebook.com/uw.computerscienceclub','Facebook',5,0),
('http://twitch.tv/uwcsclub','Twitch',6,0),
('http://bit.ly/uwcsclub-yt','YouTube',7,1),
('http://csclub.uwaterloo.ca/','CS Club Website',3,1,0),
('https://www.instagram.com/uwcsclub/','Instagram',4,1,1),
('https://www.facebook.com/uw.computerscienceclub','Facebook',5,0,2),
('http://twitch.tv/uwcsclub','Twitch',6,0,3),
('http://bit.ly/uwcsclub-yt','YouTube',7,1,4),
]
# SQLite setup
cur = con.cursor()
cur.execute("CREATE TABLE links (url text, name text, clicks int, active int)")
cur.executemany("INSERT INTO links VALUES (?,?,?,?)", links)
cur.execute("CREATE TABLE links (url text, name text, clicks int, active int, position int)")
cur.executemany("INSERT INTO links VALUES (?,?,?,?,?)", links)
con.commit()
con.close()