Index repo_history by URL

This commit is contained in:
SoniEx2 2019-04-19 16:47:32 -03:00
父節點 ef60898514
當前提交 429d3d5b30
共有 1 個文件被更改,包括 1 次插入0 次删除

查看文件

@ -87,6 +87,7 @@ def initdb():
c.execute('''CREATE TABLE repos (url TEXT PRIMARY KEY, active INT)''')
c.execute('''CREATE INDEX active_key ON repos (active)''')
c.execute('''CREATE TABLE repo_history (entry INTEGER PRIMARY KEY ASC AUTOINCREMENT, url TEXT, count INTEGER, head_commit TEXT)''')
c.execute('''CREATE INDEX url_key ON repo_history (url)''')
c.execute('''CREATE TABLE config (git_commit TEXT, project_title TEXT)''')
c.execute('''INSERT INTO config VALUES ('', '')''')
conn.commit()