Zeiterfassung: Fremdschlüssel für Auftrag: DB-Upgrade und Rose
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Thu, 29 Apr 2021 09:22:13 +0000 (11:22 +0200)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 5 May 2021 15:25:03 +0000 (17:25 +0200)
SL/DB/MetaSetup/TimeRecording.pm
sql/Pg-upgrade2/time_recordings_add_order.sql [new file with mode: 0644]

index 0ab79a5..a500131 100644 (file)
@@ -19,6 +19,7 @@ __PACKAGE__->meta->columns(
   id              => { type => 'serial', not_null => 1 },
   itime           => { type => 'timestamp', default => 'now()', not_null => 1 },
   mtime           => { type => 'timestamp', default => 'now()', not_null => 1 },
+  order_id        => { type => 'integer' },
   part_id         => { type => 'integer' },
   payroll         => { type => 'boolean', default => 'false' },
   project_id      => { type => 'integer' },
@@ -41,6 +42,11 @@ __PACKAGE__->meta->foreign_keys(
     key_columns => { employee_id => 'id' },
   },
 
+  order => {
+    class       => 'SL::DB::Order',
+    key_columns => { order_id => 'id' },
+  },
+
   part => {
     class       => 'SL::DB::Part',
     key_columns => { part_id => 'id' },
diff --git a/sql/Pg-upgrade2/time_recordings_add_order.sql b/sql/Pg-upgrade2/time_recordings_add_order.sql
new file mode 100644 (file)
index 0000000..a9b1a0d
--- /dev/null
@@ -0,0 +1,5 @@
+-- @tag: time_recordings_add_order
+-- @description: Erweiterung Zeiterfassung um Fremdschlüssel zu Auftrag
+-- @depends: time_recordings_date_duration
+
+ALTER TABLE time_recordings ADD COLUMN order_id INTEGER REFERENCES oe (id);