@@ -1374,6 +1374,44 @@ CREATE SEQUENCE public.crons_id_seq
1374
1374
ALTER SEQUENCE public .crons_id_seq OWNED BY public .crons .id;
1375
1375
1376
1376
1377
+ --
1378
+ -- Name: custom_keys; Type: TABLE; Schema: public; Owner: -
1379
+ --
1380
+
1381
+ CREATE TABLE public .custom_keys (
1382
+ id integer NOT NULL ,
1383
+ owner_id integer NOT NULL ,
1384
+ owner_type character varying,
1385
+ name character varying,
1386
+ private_key character varying,
1387
+ public_key character varying,
1388
+ fingerprint character varying,
1389
+ description text ,
1390
+ added_by integer ,
1391
+ created_at timestamp without time zone NOT NULL ,
1392
+ updated_at timestamp without time zone NOT NULL
1393
+ );
1394
+
1395
+
1396
+ --
1397
+ -- Name: custom_keys_id_seq; Type: SEQUENCE; Schema: public; Owner: -
1398
+ --
1399
+
1400
+ CREATE SEQUENCE public .custom_keys_id_seq
1401
+ START WITH 1
1402
+ INCREMENT BY 1
1403
+ NO MINVALUE
1404
+ NO MAXVALUE
1405
+ CACHE 1 ;
1406
+
1407
+
1408
+ --
1409
+ -- Name: custom_keys_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: -
1410
+ --
1411
+
1412
+ ALTER SEQUENCE public .custom_keys_id_seq OWNED BY public .custom_keys .id;
1413
+
1414
+
1377
1415
--
1378
1416
-- Name: deleted_build_configs; Type: TABLE; Schema: public; Owner: -
1379
1417
--
@@ -3140,6 +3178,13 @@ ALTER TABLE ONLY public.coupons ALTER COLUMN id SET DEFAULT nextval('public.coup
3140
3178
ALTER TABLE ONLY public .crons ALTER COLUMN id SET DEFAULT nextval(' public.crons_id_seq' ::regclass);
3141
3179
3142
3180
3181
+ --
3182
+ -- Name: custom_keys id; Type: DEFAULT; Schema: public; Owner: -
3183
+ --
3184
+
3185
+ ALTER TABLE ONLY public .custom_keys ALTER COLUMN id SET DEFAULT nextval(' public.custom_keys_id_seq' ::regclass);
3186
+
3187
+
3143
3188
--
3144
3189
-- Name: email_unsubscribes id; Type: DEFAULT; Schema: public; Owner: -
3145
3190
--
@@ -3490,6 +3535,14 @@ ALTER TABLE ONLY public.crons
3490
3535
ADD CONSTRAINT crons_pkey PRIMARY KEY (id);
3491
3536
3492
3537
3538
+ --
3539
+ -- Name: custom_keys custom_keys_pkey; Type: CONSTRAINT; Schema: public; Owner: -
3540
+ --
3541
+
3542
+ ALTER TABLE ONLY public .custom_keys
3543
+ ADD CONSTRAINT custom_keys_pkey PRIMARY KEY (id);
3544
+
3545
+
3493
3546
--
3494
3547
-- Name: email_unsubscribes email_unsubscribes_pkey; Type: CONSTRAINT; Schema: public; Owner: -
3495
3548
--
@@ -5909,6 +5962,7 @@ INSERT INTO "schema_migrations" (version) VALUES
5909
5962
(' 20210203143406' ),
5910
5963
(' 20210614140633' ),
5911
5964
(' 20220621151453' ),
5912
- (' 20220722162400' );
5965
+ (' 20220722162400' ),
5966
+ (' 20220825140522' );
5913
5967
5914
5968
0 commit comments