Skip to content

Commit

Permalink
fix: test db
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Nov 3, 2023
1 parent e517dcc commit a930d4f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions config/init.sql
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,10 @@ CREATE TABLE IF NOT EXISTS adopted_probes (
network VARCHAR(255)
);

CREATE TABLE IF NOT EXISTS directus_users (
id CHAR(36),
last_name VARCHAR(50)
);

INSERT IGNORE INTO adopted_probes (id, userId, ip) VALUES ('1', '6191378', '79.205.97.254');
INSERT IGNORE INTO directus_users (id, last_name) VALUES ('9981f785-d216-4358-a4d0-b71e54986199', '6191378');

0 comments on commit a930d4f

Please sign in to comment.