forgot pubkey column

This commit is contained in:
Ben Morrison 2020-05-04 01:57:50 -04:00
parent 529bfab177
commit 21320ae02c
No known key found for this signature in database
GPG Key ID: 8F192E4720BB0DAC
1 changed files with 2 additions and 1 deletions

View File

@ -21,7 +21,8 @@ async def init():
await db.execute("""CREATE TABLE IF NOT EXISTS the_goods (
id INTEGER PRIMARY KEY,
fingerprint TEXT NOT NULL UNIQUE,
block TEXT
pubkey TEXT NOT NULL UNIQUE,
kilo TEXT
)""")