commercial unit area and overhead stuff

This commit is contained in:
2022-01-06 23:16:34 +01:00
parent cb632e9e8e
commit 0e4fd12238
10 changed files with 138 additions and 41 deletions

View File

@ -91,6 +91,7 @@ CREATE TABLE commercial_premise_t (
id serial not null primary key
,description varchar(128)
,premise integer references premise_t (id)
,area numeric(10,2)
,unique(description, premise)
);