1
0
Fork 0
mirror of https://github.com/dancojocaru2000/foxbank.git synced 2025-02-22 23:39:36 +02:00

Merge pull request #12 from dancojocaru2000/Backend

Add "drop table if exists" for exchange table
This commit is contained in:
Kenneth Bruen 2022-01-04 10:24:21 +02:00 committed by GitHub
commit a521610a6b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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,