Added "metadata_id" to appmetadata schema

This commit is contained in:
aewens 2019-02-20 12:57:23 -05:00
parent 23ec7c6146
commit c91f38b0d2
1 changed files with 2 additions and 0 deletions

View File

@ -409,8 +409,10 @@ should have the following tables:
* appmetadata - Describes additional information about application data. Fields:
* id INTEGER PRIMARY KEY AUTOINCREMENT
* appdata_id INTEGER
* metadata_id INTEGER
* value VARCHAR(32)
* FOREIGN KEY (appdata_id) REFERENCES appdata (id)
* FOREIGN KEY (metadata_id) REFERENCES appdata (id)
* tokens - For providing access to resource. Fields:
* id INTEGER PRIMARY KEY AUTOINCREMENT