16 lines
334 B
Python
16 lines
334 B
Python
import sqlite3
|
|
|
|
def create_tables(conn):
|
|
"""
|
|
Ustvari potrebne tabele v bazi, če še ne obstajajo.
|
|
"""
|
|
cursor = conn.cursor()
|
|
cursor.execute('''
|
|
CREATE TABLE IF NOT EXISTS songs (
|
|
id INTEGER PRIMARY KEY,
|
|
title TEXT,
|
|
lyrics TEXT
|
|
)
|
|
''')
|
|
conn.commit()
|