Skip to content

Commit

Permalink
βœ… πŸ—ƒ Add encrypted_data table for testing purposes
Browse files Browse the repository at this point in the history
Signed-off-by: SAMI BETTAYEB <sami3639@gmail.com>
  • Loading branch information
SAMIBETTAYEB committed Jun 22, 2021
1 parent 7dafa6f commit 83f8b39
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions test/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -377,6 +377,16 @@ CREATE TABLE reservation (
);


--
-- Name: encrypted_data; Type: TABLE; Schema: strongloop; Owner: strongloop
--

CREATE TABLE encrypted_data (
id character varying(64),
data text
);


--
-- Name: session; Type: TABLE; Schema: strongloop; Owner: strongloop
--
Expand Down Expand Up @@ -1207,6 +1217,8 @@ INSERT INTO product VALUES ('87', 'NV Goggles', NULL, NULL, NULL, NULL, NULL);
INSERT INTO product VALUES ('2', 'G17', 53, 75, 15, 'Flashlight', 'Single');
INSERT INTO product VALUES ('5', 'M9 SD', 0, 75, 15, 'Silenced', 'Single');

INSERT INTO encrypted_data VALUES('1', '1c93722e6cf53f93dd4eb15a18444dc3e910fded18239db612794059af1fa5e8');


--
-- Data for Name: reservation; Type: TABLE DATA; Schema: strongloop; Owner: strongloop
Expand Down

0 comments on commit 83f8b39

Please sign in to comment.