Add sales-person REST service
This commit is contained in:
parent
ad88a1c983
commit
8efc3843ad
6 changed files with 302 additions and 3 deletions
12
migrations/20240506114107_add_sales_person.sql
Normal file
12
migrations/20240506114107_add_sales_person.sql
Normal 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
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue