Skip to content

Commit

Permalink
[PRD] TCI/Assembla Handshake with SVN/P4 (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
speedywizard authored and vitalie committed Aug 2, 2023
1 parent c2ae12a commit 845ce19
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class AddCloneUrlToRepositories < ActiveRecord::Migration[5.2]
def change
add_column :repositories, :clone_url, :string
end
end
6 changes: 4 additions & 2 deletions db/main/structure.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2356,7 +2356,8 @@ CREATE TABLE public.repositories (
vcs_slug character varying,
vcs_source_host character varying,
server_type character varying(20),
scan_failed_at timestamp without time zone
scan_failed_at timestamp without time zone,
clone_url character varying
);


Expand Down Expand Up @@ -5967,6 +5968,7 @@ INSERT INTO "schema_migrations" (version) VALUES
('20220722162400'),
('20220825140522'),
('20220905144600'),
('20221214171030');
('20221214171030'),
('20230208161446');


0 comments on commit 845ce19

Please sign in to comment.