Skip to content

Commit 725e7f6

Browse files
authored
TCI/ASM Handshake for P4/SVN (#282)
1 parent 69c264e commit 725e7f6

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class AddCloneUrlToRepositories < ActiveRecord::Migration[5.2]
2+
def change
3+
add_column :repositories, :clone_url, :string
4+
end
5+
end

Diff for: db/main/structure.sql

+4-2
Original file line numberDiff line numberDiff line change
@@ -2356,7 +2356,8 @@ CREATE TABLE public.repositories (
23562356
vcs_slug character varying,
23572357
vcs_source_host character varying,
23582358
server_type character varying(20),
2359-
scan_failed_at timestamp without time zone
2359+
scan_failed_at timestamp without time zone,
2360+
clone_url character varying
23602361
);
23612362

23622363

@@ -5967,6 +5968,7 @@ INSERT INTO "schema_migrations" (version) VALUES
59675968
('20220722162400'),
59685969
('20220825140522'),
59695970
('20220905144600'),
5970-
('20221214171030');
5971+
('20221214171030'),
5972+
('20230208161446');
59715973

59725974

0 commit comments

Comments
 (0)