Skip to content
Snippets Groups Projects

Add cvs as supported revision_type

Compare and
4 files
+ 12
3
Compare changes
  • Side-by-side
  • Inline
Files
4
+ 9
0
-- SWH DB schema upgrade
-- from_version: 176
-- to_version: 177
-- description: add cvs to revision_type values
insert into dbversion(version, release, description)
values(177, now(), 'Work In Progress');
alter type revision_type add value 'cvs';
Loading