Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/database/updatedatabase.py

12 lines
286 B
Python
Raw Normal View History

2021-02-12 18:22:24 +00:00
import os
import sqlite3
dbpath = os.path.abspath('./database/save.db')
conn = sqlite3.connect(dbpath)
c = conn.cursor()
c.execute('''CREATE TABLE time
(ID INT PRIMARY KEY NOT NULL,
NAME TEXT NOT NULL,
TIME TIMESTAMP DEFAULT CURRENT_TIMESTAMP);''')
c.close()