notes
This commit is contained in:
@ -104,5 +104,12 @@ CREATE TABLE account_entry_t (
|
||||
,amount numeric(10,2) not null
|
||||
);
|
||||
|
||||
CREATE TABLE note_t (
|
||||
id serial not null primary key
|
||||
,created_at timestamp not null default now()
|
||||
,tenant integer not null references tenant_t (id)
|
||||
,note varchar(4096) not null
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user