Este commit está contenido en:
SoniEx2 2019-04-19 09:52:28 -03:00
padre c38c2d321c
commit 9b983f9862
Se han modificado 1 ficheros con 1 adiciones y 0 borrados

Ver fichero

@ -85,6 +85,7 @@ def initdb():
conn = sqlite3.connect(data_home + "/ganarchy.db")
c = conn.cursor()
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 TABLE config (git_commit TEXT, project_title TEXT)''')
c.execute('''INSERT INTO config VALUES ('', '')''')