1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/teampass_ynh.git synced 2024-09-03 20:26:37 +02:00

Correction pour le passage en version 2.1.24.4

This commit is contained in:
Ackak 2015-12-06 16:52:08 +01:00
parent 49e30291c8
commit 9cafd54dd3

View file

@ -9,6 +9,8 @@ CREATE TABLE IF NOT EXISTS `teampass_items` (
`label` varchar(100) NOT NULL,
`description` text NOT NULL,
`pw` text NOT NULL,
`pw_iv` text NOT NULL,
`pw_len` int(5) NOT NULL,
`url` varchar(250) DEFAULT NULL,
`id_tree` varchar(10) DEFAULT NULL,
`perso` tinyint(1) NOT null DEFAULT '0',
@ -28,8 +30,9 @@ CREATE TABLE IF NOT EXISTS `teampass_log_items` (
`id_item` int(8) NOT NULL,
`date` varchar(50) NOT NULL,
`id_user` int(8) NOT NULL,
`action` varchar(250) NOT NULL,
`raison` text NOT NULL
`action` varchar(250) DEFAULT NULL,
`raison` text,
`raison_iv` text
) CHARSET=utf8;
CREATE TABLE IF NOT EXISTS `teampass_misc` (