IF EXISTS condition in salts table

This commit is contained in:
Imbus 2024-03-16 17:32:51 +01:00
parent 47d7d9fe3c
commit 17c8a17ebf

View file

@ -1,7 +1,7 @@
-- It is unclear weather this table will be used -- It is unclear weather this table will be used
-- Create the table to store hash salts -- Create the table to store hash salts
CREATE TABLE salts ( CREATE TABLE IF NOT EXISTS salts (
id INTEGER PRIMARY KEY, id INTEGER PRIMARY KEY,
salt TEXT NOT NULL salt TEXT NOT NULL
); );