diff options
| author | Christian Weiske <cweiske@cweiske.de> | 2014-09-30 23:13:49 +0200 |
|---|---|---|
| committer | Christian Weiske <cweiske@cweiske.de> | 2014-09-30 23:13:49 +0200 |
| commit | eb5c81dea5a60bc65d3ec607daf5ad81fd709928 (patch) | |
| tree | 81407f1e67adba222a020e142d0ebfb15a3f5ef3 /appinfo/database.xml | |
| parent | f38e545235173bb145e4b1c9c29dc2960a0a3389 (diff) | |
| download | grauphel-eb5c81dea5a60bc65d3ec607daf5ad81fd709928.tar.gz grauphel-eb5c81dea5a60bc65d3ec607daf5ad81fd709928.zip | |
store client name and last use time for tokens. show them in token management
Diffstat (limited to 'appinfo/database.xml')
| -rwxr-xr-x | appinfo/database.xml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/appinfo/database.xml b/appinfo/database.xml index 176f89f..7419ee7 100755 --- a/appinfo/database.xml +++ b/appinfo/database.xml @@ -51,6 +51,17 @@ <notnull>true</notnull> <length>2048</length> </field> + <field> + <name>token_client</name> + <type>text</type> + <notnull>true</notnull> + <length>256</length> + </field> + <field> + <name>token_lastuse</name> + <type>timestamp</type> + <notnull>true</notnull> + </field> </declaration> </table> |
