Files: Druckvariante abspeichern können: sql und rose
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Fri, 3 Dec 2021 16:34:55 +0000 (17:34 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Mon, 20 Dec 2021 10:21:59 +0000 (11:21 +0100)
SL/DB/MetaSetup/File.pm
sql/Pg-upgrade2/files_add_variant.sql [new file with mode: 0644]

index 257e09f..e5fd622 100644 (file)
@@ -9,19 +9,20 @@ use parent qw(SL::DB::Object);
 __PACKAGE__->meta->table('files');
 
 __PACKAGE__->meta->columns(
-  backend      => { type => 'text' },
-  backend_data => { type => 'text' },
-  description  => { type => 'text' },
-  file_name    => { type => 'text', not_null => 1 },
-  file_type    => { type => 'text', not_null => 1 },
-  id           => { type => 'serial', not_null => 1 },
-  itime        => { type => 'timestamp', default => 'now()' },
-  mime_type    => { type => 'text', not_null => 1 },
-  mtime        => { type => 'timestamp' },
-  object_id    => { type => 'integer', not_null => 1 },
-  object_type  => { type => 'text', not_null => 1 },
-  source       => { type => 'text', not_null => 1 },
-  title        => { type => 'varchar', length => 45 },
+  backend       => { type => 'text' },
+  backend_data  => { type => 'text' },
+  description   => { type => 'text' },
+  file_name     => { type => 'text', not_null => 1 },
+  file_type     => { type => 'text', not_null => 1 },
+  id            => { type => 'serial', not_null => 1 },
+  itime         => { type => 'timestamp', default => 'now()' },
+  mime_type     => { type => 'text', not_null => 1 },
+  mtime         => { type => 'timestamp' },
+  object_id     => { type => 'integer', not_null => 1 },
+  object_type   => { type => 'text', not_null => 1 },
+  print_variant => { type => 'text' },
+  source        => { type => 'text', not_null => 1 },
+  title         => { type => 'varchar', length => 45 },
 );
 
 __PACKAGE__->meta->primary_key_columns([ 'id' ]);
diff --git a/sql/Pg-upgrade2/files_add_variant.sql b/sql/Pg-upgrade2/files_add_variant.sql
new file mode 100644 (file)
index 0000000..a697e8a
--- /dev/null
@@ -0,0 +1,5 @@
+-- @tag: files_add_variant
+-- @description: Varianten für DMS System
+-- @depends: release_3_5_8
+
+ALTER TABLE files ADD COLUMN print_variant text;