time-recording: Boolean für abgerechnete und an die LohnBu gemeldete Zeiten
authorJan Büren <jan@kivitendo.de>
Mon, 28 Dec 2020 09:02:51 +0000 (10:02 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 5 May 2021 15:25:02 +0000 (17:25 +0200)
SL/DB/MetaSetup/TimeRecording.pm
sql/Pg-upgrade2/time_recordings2.sql [new file with mode: 0644]

index 518a037..cb3bdd5 100644 (file)
@@ -9,6 +9,7 @@ use parent qw(SL::DB::Object);
 __PACKAGE__->meta->table('time_recordings');
 
 __PACKAGE__->meta->columns(
+  booked          => { type => 'boolean', default => 'false' },
   customer_id     => { type => 'integer', not_null => 1 },
   description     => { type => 'text', not_null => 1 },
   employee_id     => { type => 'integer', not_null => 1 },
@@ -16,6 +17,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 },
+  payroll         => { type => 'boolean', default => 'false' },
   project_id      => { type => 'integer' },
   staff_member_id => { type => 'integer', not_null => 1 },
   start_time      => { type => 'timestamp', not_null => 1 },
diff --git a/sql/Pg-upgrade2/time_recordings2.sql b/sql/Pg-upgrade2/time_recordings2.sql
new file mode 100644 (file)
index 0000000..afebb21
--- /dev/null
@@ -0,0 +1,6 @@
+-- @tag: time_recordings2
+-- @description: Ergänzung zur Zeiterfassung
+-- @depends: time_recordings
+ALTER TABLE time_recordings ADD column booked boolean DEFAULT false;
+ALTER TABLE time_recordings ADD column payroll boolean DEFAULT false;
+