Add sales-person REST service

This commit is contained in:
Simon Goller 2024-05-06 15:15:47 +02:00
parent ad88a1c983
commit 8efc3843ad
6 changed files with 302 additions and 3 deletions

View file

@ -0,0 +1,12 @@
-- Add migration script here
CREATE TABLE sales_person (
id blob(16) NOT NULL PRIMARY KEY,
name TEXT NOT NULL,
inactive BOOLEAN NOT NULL,
deleted TEXT,
update_timestamp TEXT,
update_process TEXT NOT NULL,
update_version blob(16) NOT NULL
);