1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-04-21 02:33:54 +03:00

Add "drop table if exists" for exchange table

The initialization script is only called if no database exists, so this
shouldn't matter since there would be nothing to drop,
but consistency is nice.
This commit is contained in:
Kenneth Bruen 2022-01-04 10:05:16 +02:00
parent 1c56bf2a60
commit b70e698b18
Signed by: kbruen
GPG key ID: C1980A470C3EE5B1

View file

@ -5,6 +5,7 @@ drop table if exists transactions;
drop table if exists accounts_transactions;
drop table if exists notifications;
drop table if exists users_notifications;
drop table if exists exchange;
create table users (
id integer primary key autoincrement,