Welcome to mirror list, hosted at ThFree Co, Russian Federation.

database.xml « appinfo - github.com/nextcloud/registration.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a8039ce980195d439f218f0969ab8ba05d29c22 (plain)
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
<?xml version="1.0" encoding="UTF-8" ?>
<database>
	<name>*dbname*</name>
	<create>true</create>
	<overwrite>false</overwrite>
	<charset>utf8</charset>
	<table>
		<name>*dbprefix*registration</name>
		<declaration>
			<field>
				<name>id</name>
				<type>integer</type>
				<notnull>true</notnull>
				<autoincrement>true</autoincrement>
				<unsigned>true</unsigned>
				<primary>true</primary>
			</field>
			<field>
				<name>email</name>
				<type>text</type>
				<notnull>true</notnull>
			</field>
			<field>
				<name>token</name>
				<type>text</type>
				<notnull>true</notnull>
			</field>
			<field>
				<name>requested</name>
				<type>timestamp</type>
				<notnull>true</notnull>
			</field>
		</declaration>
	</table>
</database>