Put color on own database. Umm.. Any relationship placed on the note controller.

This commit is contained in:
Matias De lellis
2016-05-26 18:09:55 -03:00
parent b7264d4377
commit 6df7fc0ba8
7 changed files with 163 additions and 21 deletions

View File

@@ -35,6 +35,33 @@
<default></default>
<notnull>true</notnull>
</field>
<field>
<name>timestamp</name>
<type>integer</type>
<default>0</default>
<notnull>true</notnull>
<length>4</length>
</field>
<field>
<name>color_id</name>
<type>integer</type>
<notnull>true</notnull>
<length>8</length>
</field>
</declaration>
</table>
<table>
<name>*dbprefix*quicknotes_colors</name>
<declaration>
<field>
<name>id</name>
<type>integer</type>
<notnull>true</notnull>
<autoincrement>true</autoincrement>
<unsigned>true</unsigned>
<primary>true</primary>
<length>8</length>
</field>
<field>
<name>color</name>
<type>text</type>

View File

@@ -5,7 +5,7 @@
<description>Quick notes with text, check lists and pictures</description>
<licence>AGPL</licence>
<author>Matias De lellis</author>
<version>0.0.4</version>
<version>0.0.6</version>
<namespace>QuickNotes</namespace>
<category>tool</category>
<website>https://github.com/matiasdelellis</website>