added frist draft of account ui
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@ -10,3 +10,4 @@
|
|||||||
/shared-poi-util/target/
|
/shared-poi-util/target/
|
||||||
/account/nb-configuration.xml
|
/account/nb-configuration.xml
|
||||||
/poi-util/target/
|
/poi-util/target/
|
||||||
|
/account-ui/target/
|
||||||
@ -3,7 +3,7 @@
|
|||||||
CAUTION: Do not modify this file unless you know what you are doing.
|
CAUTION: Do not modify this file unless you know what you are doing.
|
||||||
Unexpected results may occur if the code is changed deliberately.
|
Unexpected results may occur if the code is changed deliberately.
|
||||||
-->
|
-->
|
||||||
<dbmodel pgmodeler-ver="0.9.1" author="Joern Muehlencord" last-position="37,0" last-zoom="0.85"
|
<dbmodel pgmodeler-ver="0.9.1" author="Joern Muehlencord" last-position="0,0" last-zoom="0.85"
|
||||||
default-schema="public" default-owner="postgres">
|
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 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>
|
</database>
|
||||||
@ -37,13 +37,16 @@ CAUTION: Do not modify this file unless you know what you are doing.
|
|||||||
<column name="id" not-null="true">
|
<column name="id" not-null="true">
|
||||||
<type name="uuid" length="0"/>
|
<type name="uuid" length="0"/>
|
||||||
</column>
|
</column>
|
||||||
|
<column name="application" not-null="true">
|
||||||
|
<type name="uuid" length="0"/>
|
||||||
|
</column>
|
||||||
<column name="role_name" not-null="true">
|
<column name="role_name" not-null="true">
|
||||||
<type name="character varying" length="80"/>
|
<type name="character varying" length="80"/>
|
||||||
</column>
|
</column>
|
||||||
<column name="role_description" not-null="true">
|
<column name="role_description" not-null="true">
|
||||||
<type name="character varying" length="200"/>
|
<type name="character varying" length="200"/>
|
||||||
</column>
|
</column>
|
||||||
<constraint name="pk_application_role_pk" type="pk-constr" table="public.application_role">
|
<constraint name="application_role_pk" type="pk-constr" table="public.application_role">
|
||||||
<columns names="id" ref-type="src-columns"/>
|
<columns names="id" ref-type="src-columns"/>
|
||||||
</constraint>
|
</constraint>
|
||||||
</table>
|
</table>
|
||||||
@ -201,12 +204,36 @@ CAUTION: Do not modify this file unless you know what you are doing.
|
|||||||
</constraint>
|
</constraint>
|
||||||
</table>
|
</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"
|
<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">
|
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="config_key_account" ref-type="src-columns"/>
|
||||||
<columns names="id" ref-type="dst-columns"/>
|
<columns names="id" ref-type="dst-columns"/>
|
||||||
</constraint>
|
</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"
|
<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">
|
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="account_id" ref-type="src-columns"/>
|
||||||
@ -272,4 +299,9 @@ CAUTION: Do not modify this file unless you know what you are doing.
|
|||||||
dst-table="public.account" reference-fk="config_key_account_fk"
|
dst-table="public.account" reference-fk="config_key_account_fk"
|
||||||
src-required="false" dst-required="false"/>
|
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>
|
</dbmodel>
|
||||||
|
|||||||
Reference in New Issue
Block a user