diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-01-22 22:38:00 -0500 |
commit | 10d96bfd668f445249190c52bedb2eb0e7e9410d (patch) | |
tree | 951bcf637b9371529a6552a2efd22e7a84707d9e /app/Schema/Sqlite.php | |
parent | 2f43d365a0aaeff638eb4731bcff6907b491633a (diff) |
Add user invitations
Diffstat (limited to 'app/Schema/Sqlite.php')
-rw-r--r-- | app/Schema/Sqlite.php | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php index d2a7899e..a726a572 100644 --- a/app/Schema/Sqlite.php +++ b/app/Schema/Sqlite.php @@ -6,14 +6,24 @@ use Kanboard\Core\Security\Token; use Kanboard\Core\Security\Role; use PDO; -const VERSION = 109; +const VERSION = 110; + +function version_110(PDO $pdo) +{ + $pdo->exec(" + CREATE TABLE invites ( + email TEXT NOT NULL, + project_id INTEGER NOT NULL, + token TEXT NOT NULL, + PRIMARY KEY(email, token) + ) + "); +} function version_109(PDO $pdo) { $pdo->exec('ALTER TABLE comments ADD COLUMN date_modification INTEGER'); - $pdo->exec('UPDATE comments - SET date_modification = date_creation - WHERE date_modification IS NULL;'); + $pdo->exec('UPDATE comments SET date_modification = date_creation WHERE date_modification IS NULL;'); } function version_108(PDO $pdo) |