Browse Source

Merge pull request #12 from dancojocaru2000/Backend

Add "drop table if exists" for exchange table
Frontend
Kenneth Bruen 3 years ago committed by GitHub
parent
commit
a521610a6b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      server/init.sql

1
server/init.sql

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

Loading…
Cancel
Save