Skip to content

Commit b4ff5e7

Browse files
committed
βœ… πŸ—ƒ Add encrypted_data table for testing purposes
Signed-off-by: SAMI BETTAYEB <[email protected]>
1 parent 81dfaec commit b4ff5e7

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

β€Žtest/schema.sql

+12
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,16 @@ CREATE TABLE reservation (
377377
);
378378

379379

380+
--
381+
-- Name: encrypted_data; Type: TABLE; Schema: strongloop; Owner: strongloop
382+
--
383+
384+
CREATE TABLE encrypted_data (
385+
id character varying(64),
386+
data text
387+
);
388+
389+
380390
--
381391
-- Name: session; Type: TABLE; Schema: strongloop; Owner: strongloop
382392
--
@@ -1207,6 +1217,8 @@ INSERT INTO product VALUES ('87', 'NV Goggles', NULL, NULL, NULL, NULL, NULL);
12071217
INSERT INTO product VALUES ('2', 'G17', 53, 75, 15, 'Flashlight', 'Single');
12081218
INSERT INTO product VALUES ('5', 'M9 SD', 0, 75, 15, 'Silenced', 'Single');
12091219

1220+
INSERT INTO encrypted_data VALUES('1', '1c93722e6cf53f93dd4eb15a18444dc3e910fded18239db612794059af1fa5e8');
1221+
12101222

12111223
--
12121224
-- Data for Name: reservation; Type: TABLE DATA; Schema: strongloop; Owner: strongloop

0 commit comments

Comments
Β (0)