379 lines
14 KiB
XML
379 lines
14 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="315,0" last-zoom="0.7"
|
|
default-schema="public">
|
|
<database name="account_test" encoding="UTF8" lc-collate="C" lc-ctype="C" is-template="false" allow-conns="true" sql-disabled="true">
|
|
</database>
|
|
|
|
<schema name="public" fill-color="#e1e1e1" sql-disabled="true">
|
|
</schema>
|
|
|
|
<table name="config" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="1880" y="380"/>
|
|
<column name="application" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<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="application,config_key,config_key_account" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="application_role" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="160" y="500"/>
|
|
<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>
|
|
<constraint name="application_role_name_uidx" type="uq-constr" table="public.application_role">
|
|
<columns names="application,role_name" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="account" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="1240" y="100"/>
|
|
<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="status" not-null="true" default-value="'NEW'">
|
|
<type name="character varying" length="10"/>
|
|
</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" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="760" y="340"/>
|
|
<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" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="740" y="100"/>
|
|
<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" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="1560" y="740"/>
|
|
<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="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="application_permission_name_uidx" type="uq-constr" table="public.application_permission">
|
|
<columns names="application,permission_name" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<table name="role_permission" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="960" y="800"/>
|
|
<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" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="280" y="860"/>
|
|
<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" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="1080" y="560"/>
|
|
<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-ossp" sql-disabled="true">
|
|
<schema name="public"/>
|
|
</extension>
|
|
|
|
<table name="account_login" hide-ext-attribs="true">
|
|
<schema name="public"/>
|
|
<position x="1880" y="20"/>
|
|
<column name="id" not-null="true" default-value="uuid_generate_v4()">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="account" not-null="true">
|
|
<type name="uuid" length="0"/>
|
|
</column>
|
|
<column name="account_password" not-null="true">
|
|
<type name="varchar" length="200"/>
|
|
</column>
|
|
<column name="last_login">
|
|
<type name="timestamptz" length="0"/>
|
|
</column>
|
|
<column name="last_failed_login">
|
|
<type name="timestamptz" length="0"/>
|
|
</column>
|
|
<column name="failure_count" not-null="true" default-value="0">
|
|
<type name="integer" length="0"/>
|
|
</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="timestamptz" length="0"/>
|
|
</column>
|
|
<column name="password_reset_hash">
|
|
<type name="varchar" length="200"/>
|
|
</column>
|
|
<column name="created_on" not-null="true" default-value="timezone('utc'::text, now())">
|
|
<type name="timestamptz" length="0"/>
|
|
</column>
|
|
<column name="created_by" not-null="true">
|
|
<type name="varchar" length="32"/>
|
|
</column>
|
|
<column name="last_updated_on" not-null="true" default-value="timezone('utc'::text, now())">
|
|
<type name="timestamptz" length="0"/>
|
|
</column>
|
|
<column name="last_updated_by" not-null="true">
|
|
<type name="varchar" length="32"/>
|
|
</column>
|
|
<constraint name="account_login_pk" type="pk-constr" table="public.account_login">
|
|
<columns names="id" ref-type="src-columns"/>
|
|
</constraint>
|
|
<constraint name="account_login_uidx" type="uq-constr" table="public.account_login">
|
|
<columns names="account" ref-type="src-columns"/>
|
|
</constraint>
|
|
</table>
|
|
|
|
<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="config_application_fk" type="fk-constr" comparison-type="MATCH FULL"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application" table="public.config">
|
|
<columns names="application" 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="application_permission_app_fk" type="fk-constr" comparison-type="MATCH FULL"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.application" table="public.application_permission">
|
|
<columns names="application" 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>
|
|
|
|
<constraint name="account_login_fk" type="fk-constr" comparison-type="MATCH FULL"
|
|
upd-action="NO ACTION" del-action="NO ACTION" ref-table="public.account" table="public.account_login">
|
|
<columns names="account" 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"/>
|
|
|
|
<relationship name="rel_application_permission_application" type="relfk"
|
|
src-table="public.application_permission"
|
|
dst-table="public.application" reference-fk="application_permission_app_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_account_login_account" type="relfk"
|
|
src-table="public.account_login"
|
|
dst-table="public.account" reference-fk="account_login_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
<relationship name="rel_config_application" type="relfk"
|
|
src-table="public.config"
|
|
dst-table="public.application" reference-fk="config_application_fk"
|
|
src-required="false" dst-required="false"/>
|
|
|
|
</dbmodel>
|