308 lines
12 KiB
XML
308 lines
12 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
CAUTION: Do not modify this file unless you know what you are doing.
|
|
Unexpected results may occur if the code is changed deliberately.
|
|
-->
|
|
<dbmodel pgmodeler-ver="0.9.1" author="Joern Muehlencord" last-position="0,0" last-zoom="0.85"
|
|
default-schema="public" default-owner="postgres">
|
|
<database name="account_test" encoding="UTF8" lc-collate="German_Germany.1252" lc-ctype="German_Germany.1252" is-template="false" allow-conns="true" sql-disabled="true">
|
|
</database>
|
|
|
|
<schema name="public" fill-color="#e1e1e1" sql-disabled="true">
|
|
</schema>
|
|
|
|
<table name="config">
|
|
<schema name="public"/>
|
|
<position x="1912" y="120.235"/>
|
|
<column name="config_key" not-null="true">
|
|
<type name="varchar" length="100"/>
|
|
</column>
|
|
<column name="config_key_account" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="config_key_group">
|
|
<type name="varchar" length="200"/>
|
|
</column>
|
|
<column name="config_value">
|
|
<type name="varchar" length="200"/>
|
|
</column>
|
|
<constraint name="config_pk" type="pk-constr" table="public.config">
|
|
<columns names="config_key,config_key_account" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="application_role">
|
|
<schema name="public"/>
|
|
<position x="186.257" y="310"/>
|
|
<column name="id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="application" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="role_name" not-null="true">
|
|
<type name="character varying" length="80"/>
|
|
</column>
|
|
<column name="role_description" not-null="true">
|
|
<type name="character varying" length="200"/>
|
|
</column>
|
|
<constraint name="application_role_pk" type="pk-constr" table="public.application_role">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="account">
|
|
<schema name="public"/>
|
|
<position x="1323.59" y="185.294"/>
|
|
<column name="id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="username" not-null="true">
|
|
<type name="character varying" length="32"/>
|
|
</column>
|
|
<column name="emailaddress" not-null="true">
|
|
<type name="character varying" length="200"/>
|
|
</column>
|
|
<column name="firstname" not-null="true">
|
|
<type name="character varying" length="100"/>
|
|
</column>
|
|
<column name="lastname" not-null="true">
|
|
<type name="character varying" length="100"/>
|
|
</column>
|
|
<column name="account_password" not-null="true">
|
|
<type name="character" length="200"/>
|
|
</column>
|
|
<column name="last_login">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="last_failed_login">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="failure_count" not-null="true" default-value="0">
|
|
<type name="integer" length="0"/>
|
|
</column>
|
|
<column name="status" not-null="true" default-value="'NEW'">
|
|
<type name="character varying" length="10"/>
|
|
</column>
|
|
<column name="password_reset_ongoing" not-null="true" default-value="false">
|
|
<type name="boolean" length="0"/>
|
|
</column>
|
|
<column name="password_reset_valid_to">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="password_reset_hash">
|
|
<type name="character" length="200"/>
|
|
</column>
|
|
<column name="created_on" not-null="true" default-value="timezone('utc'::text, now())">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="created_by" not-null="true">
|
|
<type name="character varying" length="32"/>
|
|
</column>
|
|
<column name="last_updated_on" not-null="true" default-value="timezone('utc'::text, now())">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="last_updated_by" not-null="true">
|
|
<type name="character varying" length="32"/>
|
|
</column>
|
|
<constraint name="pk_account" type="pk-constr" table="public.account">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
<constraint name="uidx_username" type="uq-constr" table="public.account">
|
|
<columns names="username" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="account_history">
|
|
<schema name="public"/>
|
|
<position x="725.984" y="294.706"/>
|
|
<column name="id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="account_id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="message">
|
|
<type name="character varying" length="200"/>
|
|
</column>
|
|
<column name="failure_count" not-null="true" default-value="0">
|
|
<type name="integer" length="0"/>
|
|
</column>
|
|
<column name="status" not-null="true">
|
|
<type name="character varying" length="20"/>
|
|
</column>
|
|
<column name="last_updated_on" not-null="true" default-value="timezone('utc'::text, now())">
|
|
<type name="timestamp with time zone" length="0" with-timezone="true"/>
|
|
</column>
|
|
<column name="last_updated_by" not-null="true">
|
|
<type name="character varying" length="32"/>
|
|
</column>
|
|
<constraint name="pk_account_history" type="pk-constr" table="public.account_history">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="account_role">
|
|
<schema name="public"/>
|
|
<position x="738.806" y="90"/>
|
|
<column name="account" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="account_role" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<constraint name="pk_account_role" type="pk-constr" table="public.account_role">
|
|
<columns names="account,account_role" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="application_permission">
|
|
<schema name="public"/>
|
|
<position x="1571.12" y="573.662"/>
|
|
<column name="id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="permission_name" not-null="true">
|
|
<type name="character varying" length="80"/>
|
|
</column>
|
|
<column name="permission_description" not-null="true">
|
|
<type name="character varying" length="200"/>
|
|
</column>
|
|
<constraint name="pk_application_permission" type="pk-constr" table="public.application_permission">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
<constraint name="uidx_application_permission_name" type="uq-constr" table="public.application_permission">
|
|
<columns names="permission_name" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="role_permission">
|
|
<schema name="public"/>
|
|
<position x="617.922" y="582.191"/>
|
|
<column name="application_role" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="role_permission" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<constraint name="pk_role_permission_role_permission_name" type="pk-constr" table="public.role_permission">
|
|
<columns names="application_role,role_permission" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="mail_template">
|
|
<schema name="public"/>
|
|
<position x="684.593" y="789.132"/>
|
|
<column name="template_name" not-null="true">
|
|
<type name="character varying" length="40"/>
|
|
</column>
|
|
<column name="template_value" not-null="true">
|
|
<type name="text" length="0"/>
|
|
</column>
|
|
<constraint name="mail_template_pk" type="pk-constr" table="public.mail_template">
|
|
<columns names="template_name" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="application">
|
|
<schema name="public"/>
|
|
<position x="57.6471" y="49.4118"/>
|
|
<column name="id" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="application_name" not-null="true">
|
|
<type name="varchar" length="200"/>
|
|
</column>
|
|
<constraint name="application_pk" type="pk-constr" table="public.application">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<extension name="uuid-osp" sql-disabled="true">
|
|
<schema name="public"/>
|
|
</extension>
|
|
|
|
<constraint name="config_key_account_fk" type="fk-constr" comparison-type="MATCH FULL"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.account" table="public.config">
|
|
<columns names="config_key_account" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="application_role_app_fk" type="fk-constr" comparison-type="MATCH FULL"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application" table="public.application_role">
|
|
<columns names="application" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="fk_account_history_username_fk" type="fk-constr" comparison-type="MATCH SIMPLE"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.account" table="public.account_history">
|
|
<columns names="account_id" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="fk_account_role_account" type="fk-constr" comparison-type="MATCH SIMPLE"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.account" table="public.account_role">
|
|
<columns names="account" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="fk_account_role_role_name" type="fk-constr" comparison-type="MATCH SIMPLE"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application_role" table="public.account_role">
|
|
<columns names="account_role" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="fk_role_permission_application_role" type="fk-constr" comparison-type="MATCH SIMPLE"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application_role" table="public.role_permission">
|
|
<columns names="application_role" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<constraint name="fk_role_permission_role_permission" type="fk-constr" comparison-type="MATCH SIMPLE"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application_permission" table="public.role_permission">
|
|
<columns names="role_permission" ref-type="src-columns"/>
|
|
<columns names="id" ref-type="dst-columns"/>
|
|
</constraint>
|
|
|
|
<relationship name="rel_account_history_account" type="relfk"
|
|
custom-color="#83af1f"
|
|
src-table="public.account_history"
|
|
dst-table="public.account" reference-fk="fk_account_history_username_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_account_role_account" type="relfk"
|
|
custom-color="#5aa578"
|
|
src-table="public.account_role"
|
|
dst-table="public.account" reference-fk="fk_account_role_account"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_account_role_application_role" type="relfk"
|
|
custom-color="#4b3e56"
|
|
src-table="public.account_role"
|
|
dst-table="public.application_role" reference-fk="fk_account_role_role_name"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_role_permission_application_role" type="relfk"
|
|
custom-color="#9ac721"
|
|
src-table="public.role_permission"
|
|
dst-table="public.application_role" reference-fk="fk_role_permission_application_role"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_role_permission_application_permission" type="relfk"
|
|
custom-color="#249b49"
|
|
src-table="public.role_permission"
|
|
dst-table="public.application_permission" reference-fk="fk_role_permission_role_permission"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_config_account" type="relfk"
|
|
src-table="public.config"
|
|
dst-table="public.account" reference-fk="config_key_account_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_application_role_application" type="relfk"
|
|
src-table="public.application_role"
|
|
dst-table="public.application" reference-fk="application_role_app_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
</dbmodel>
|