1
0
mirror of https://github.com/nerzhul/ocsms.git synced 2025-06-10 17:36:21 +00:00

Add DB table for app config

This commit is contained in:
Loic Blot 2015-01-06 06:38:25 +00:00
parent 19bd6adcca
commit 858933d6c0
2 changed files with 24 additions and 1 deletions

View File

@ -104,4 +104,27 @@
</field>
</declaration>
</table>
<table>
<name>*dbprefix*ocsms_config</name>
<declaration>
<field>
<name>user</name>
<type>text</type>
<notnull>true</notnull>
<length>255</length>
</field>
<field>
<name>key</name>
<type>text</type>
<notnull>true</notnull>
<length>25555</length>
</field>
<field>
<name>value</name>
<type>text</type>
<notnull>false</notnull>
<length>25555</length>
</field>
</declaration>
</table>
</database>

View File

@ -5,6 +5,6 @@
<description>A app to sync SMS with your ownCloud</description>
<licence>AGPL</licence>
<author>Loic Blot</author>
<version>1.3.3</version>
<version>1.3.4</version>
<requiremin>7</requiremin>
</info>