-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.xml
164 lines (161 loc) · 5.9 KB
/
db.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<?xml version="1.0" encoding="utf-8" ?>
<!-- SQL XML created by WWW SQL Designer, https://github.com/ondras/wwwsqldesigner/ -->
<!-- Active URL: https://sql.toad.cz/? -->
<sql>
<datatypes db="mysql">
<group label="Numeric" color="rgb(238,238,170)">
<type label="Integer" length="0" sql="INTEGER" quote=""/>
<type label="TINYINT" length="0" sql="TINYINT" quote=""/>
<type label="SMALLINT" length="0" sql="SMALLINT" quote=""/>
<type label="MEDIUMINT" length="0" sql="MEDIUMINT" quote=""/>
<type label="INT" length="0" sql="INT" quote=""/>
<type label="BIGINT" length="0" sql="BIGINT" quote=""/>
<type label="Decimal" length="1" sql="DECIMAL" re="DEC" quote=""/>
<type label="Single precision" length="0" sql="FLOAT" quote=""/>
<type label="Double precision" length="0" sql="DOUBLE" re="DOUBLE" quote=""/>
</group>
<group label="Character" color="rgb(255,200,200)">
<type label="Char" length="1" sql="CHAR" quote="'"/>
<type label="Varchar" length="1" sql="VARCHAR" quote="'"/>
<type label="Text" length="0" sql="MEDIUMTEXT" re="TEXT" quote="'"/>
<type label="Binary" length="1" sql="BINARY" quote="'"/>
<type label="Varbinary" length="1" sql="VARBINARY" quote="'"/>
<type label="BLOB" length="0" sql="BLOB" re="BLOB" quote="'"/>
</group>
<group label="Date & Time" color="rgb(200,255,200)">
<type label="Date" length="0" sql="DATE" quote="'"/>
<type label="Time" length="0" sql="TIME" quote="'"/>
<type label="Datetime" length="0" sql="DATETIME" quote="'"/>
<type label="Year" length="0" sql="YEAR" quote=""/>
<type label="Timestamp" length="0" sql="TIMESTAMP" quote="'"/>
</group>
<group label="Miscellaneous" color="rgb(200,200,255)">
<type label="ENUM" length="1" sql="ENUM" quote=""/>
<type label="SET" length="1" sql="SET" quote=""/>
<type label="Bit" length="0" sql="bit" quote=""/>
</group>
</datatypes><table x="126" y="104" name="users">
<row name="id" null="1" autoincrement="1">
<datatype>INTEGER</datatype>
<default>NULL</default></row>
<row name="email" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Почта</comment>
</row>
<row name="password" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>пароль</comment>
</row>
<row name="name.first" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Имя</comment>
</row>
<row name="name.last" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Фамилия</comment>
</row>
<row name="name.middle" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Отчество</comment>
</row>
<row name="off" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><comment>Отключена Да/Нет</comment>
</row>
<row name="create" null="1" autoincrement="0">
<datatype>DATETIME</datatype>
<default>NULL</default><comment>Дата создания</comment>
</row>
<row name="update" null="1" autoincrement="0">
<datatype>DATETIME</datatype>
<default>NULL</default><comment>Дата последнего изменения</comment>
</row>
<key type="PRIMARY" name="">
<part>id</part>
</key>
<comment>Пользователи</comment>
</table>
<table x="306" y="100" name="posts">
<row name="id" null="1" autoincrement="1">
<datatype>INTEGER</datatype>
<default>NULL</default></row>
<row name="title" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Заголовок</comment>
</row>
<row name="text" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Содержание</comment>
</row>
<row name="private" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><comment>признак Внутренняя Да/нет</comment>
</row>
<row name="userId" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><relation table="users" row="id" />
<comment>ссылка на автора</comment>
</row>
<row name="create" null="1" autoincrement="0">
<datatype>DATETIME</datatype>
<default>NULL</default><comment>Дата создания</comment>
</row>
<row name="update" null="1" autoincrement="0">
<datatype>DATETIME</datatype>
<default>NULL</default><comment>Дата изменения</comment>
</row>
<key type="PRIMARY" name="">
<part>id</part>
</key>
<comment>Статьи</comment>
</table>
<table x="702" y="102" name="tags">
<row name="id" null="1" autoincrement="1">
<datatype>INTEGER</datatype>
<default>NULL</default></row>
<row name="name" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Наименование</comment>
</row>
<key type="PRIMARY" name="">
<part>id</part>
</key>
<comment>Теги</comment>
</table>
<table x="499" y="102" name="posts_tags">
<row name="id" null="1" autoincrement="1">
<datatype>INTEGER</datatype>
<default>NULL</default></row>
<row name="postId" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><relation table="posts" row="id" />
<comment>Ссылка на статью</comment>
</row>
<row name="tagId" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><relation table="tags" row="id" />
<comment>Ссылка на тег</comment>
</row>
<key type="PRIMARY" name="">
<part>id</part>
</key>
<comment>Связь Поста с Тегом</comment>
</table>
<table x="306" y="299" name="token">
<row name="id" null="1" autoincrement="1">
<datatype>INTEGER</datatype>
<default>NULL</default></row>
<row name="refresh" null="1" autoincrement="0">
<datatype>CHAR</datatype>
<default>NULL</default><comment>Рефреш токен</comment>
</row>
<row name="userId" null="1" autoincrement="0">
<datatype>INTEGER</datatype>
<default>NULL</default><relation table="users" row="id" />
</row>
<key type="PRIMARY" name="">
<part>id</part>
</key>
<comment>Рефреш токены пользователя</comment>
</table>
</sql>