Skip to content

Commit 4126103

Browse files
author
Vitalie D
committed
Active Scanning and Replacing (AWS) Tokens (#278)
1 parent 6ef263b commit 4126103

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class AddScanFailedAtToRepositories < ActiveRecord::Migration[5.2]
2+
def change
3+
add_column :repositories, :scan_failed_at, :timestamp
4+
end
5+
end

db/main/structure.sql

+5-2
Original file line numberDiff line numberDiff line change
@@ -2355,7 +2355,8 @@ CREATE TABLE public.repositories (
23552355
fork boolean,
23562356
vcs_slug character varying,
23572357
vcs_source_host character varying,
2358-
server_type character varying(20)
2358+
server_type character varying(20),
2359+
scan_failed_at timestamp without time zone
23592360
);
23602361

23612362

@@ -5962,6 +5963,8 @@ INSERT INTO "schema_migrations" (version) VALUES
59625963
('20210203143406'),
59635964
('20210614140633'),
59645965
('20220621151453'),
5965-
('20220722162400');
5966+
('20220722162400'),
5967+
('20220825140522'),
5968+
('20220905144600');
59665969

59675970

0 commit comments

Comments
 (0)