Skip to content
Snippets Groups Projects
Select Git revision
  • 3a184e2e1d7ae49d596e06b724ffc36382d02596
  • master default protected
2 results

db_structure.xml

Blame
  • db_structure.xml 8.44 KiB
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <database>
    
     <name>*dbname*</name>
     <create>true</create>
     <overwrite>false</overwrite>
    
     <charset>utf8</charset>
    
     <table>
    
      <name>*dbprefix*appconfig</name>
    
      <declaration>
    
       <field>
        <name>appid</name>
        <type>text</type>
        <default></default>
        <notnull>true</notnull>
        <length>255</length>
       </field>
    
       <field>
        <name>configkey</name>
        <type>text</type>
        <default></default>
        <notnull>true</notnull>
        <length>255</length>
       </field>
    
       <field>
        <name>configvalue</name>
        <type>clob</type>
        <notnull>true</notnull>
       </field>
    
    
    
      </declaration>
    
     </table>
    
     <table>
    
      <name>*dbprefix*fscache</name>
    
      <declaration>
    
       <field>
    	   <name>id</name>
    	   <autoincrement>1</autoincrement>
    	   <type>integer</type>
    	   <default>0</default>
    	   <notnull>true</notnull>
    	   <length>4</length>
       </field>
    
       <field>
        <name>path</name>
        <type>text</type>
        <default></default>
        <notnull>true</notnull>
        <length>512</length>
       </field>
    
       <field>
    	   <name>path_hash</name>
    	   <type>text</type>
    	   <default></default>