nextcloud-app-radio/appinfo/database.xml

26 lines
532 B
XML
Raw Normal View History

2016-11-17 22:07:22 +00:00
<?xml version="1.0" encoding="ISO-8859-1" ?>
<database>
<name>*dbname*</name>
<create>true</create>
<overwrite>false</overwrite>
<charset>utf8</charset>
<table>
2017-01-08 08:36:13 +00:00
<name>*dbprefix*radio_stations</name>
2016-11-17 22:07:22 +00:00
<declaration>
<field>
<name>id</name>
<type>integer</type>
<notnull>true</notnull>
2017-01-08 08:36:13 +00:00
<length>6</length>
2016-11-17 22:07:22 +00:00
</field>
<field>
2017-01-08 08:36:13 +00:00
<name>user_id</name>
2016-11-17 22:07:22 +00:00
<type>text</type>
2017-01-08 08:36:13 +00:00
<length>200</length>
<default></default>
2016-11-17 22:07:22 +00:00
<notnull>true</notnull>
</field>
</declaration>
</table>
</database>