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

database.xml « appinfo - github.com/CarnetApp/CarnetNextcloud.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f78acf754d325ba170bcf5d8f7dda52cf794b445 (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
36
<?xml version="1.0" encoding="UTF-8" ?>
<database>
 <name>*dbname*</name>
 <create>true</create>
 <overwrite>false</overwrite>
 <charset>utf8</charset>
 <table>
  <name>*dbprefix*carnet_metadata</name>
  <declaration>
  <field>
    <name>path</name>
    <type>text</type>
    <notnull>true</notnull>
    <length>191</length>
  </field>
  <index>
        <field>
            <name>path</name> 
        </field>
        <name>indexpath</name>
        <unique>true</unique>
    </index>
    <field>
        <name>metadata</name>
        <type>text</type>
        <length>10000000</length>

    </field>
    <field>
        <name>last_modification_file</name>
        <type>integer</type>
    </field>
        
  </declaration>
</table>
</database>