Now all tables in the database, both ORIGAM default as well as user created, are in the same “dbo” schema and are mixed together. From UX perspective it would be handy to separate these two groups and locate user created tables into a separate schema.
The additional schema may be named for example “app“ or “my“.
So there will be for example:
app.Priority
app.Status
app.Task
dbo.Attachment
dbo.Counter
dbo.OrigamCalendar
etc.
In PostgreSQL the default schema is called “public”.
This separation helps also in ERD visualisation of my own created DB structures…
