Skip to content

Commit

Permalink
Active Scanning and Replacing (AWS) Tokens (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitalie D committed Dec 29, 2022
1 parent 6ef263b commit 4126103
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddScanFailedAtToRepositories < ActiveRecord::Migration[5.2]
def change
add_column :repositories, :scan_failed_at, :timestamp
end
end
7 changes: 5 additions & 2 deletions db/main/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2355,7 +2355,8 @@ CREATE TABLE public.repositories (
fork boolean,
vcs_slug character varying,
vcs_source_host character varying,
server_type character varying(20)
server_type character varying(20),
scan_failed_at timestamp without time zone
);


Expand Down Expand Up @@ -5962,6 +5963,8 @@ INSERT INTO "schema_migrations" (version) VALUES
('20210203143406'),
('20210614140633'),
('20220621151453'),
('20220722162400');
('20220722162400'),
('20220825140522'),
('20220905144600');


0 comments on commit 4126103

Please sign in to comment.