From 46eafe105fe97b7be8b8a25a72b491bef03fea8c Mon Sep 17 00:00:00 2001 From: Frederic Guillot Date: Mon, 18 May 2015 12:56:32 -0400 Subject: Add ical export for users --- app/Schema/Postgres.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'app/Schema/Postgres.php') diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index 27efe8c4..4ec6965f 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -6,7 +6,12 @@ use PDO; use Core\Security; use Model\Link; -const VERSION = 50; +const VERSION = 51; + +function version_51($pdo) +{ + $pdo->exec("ALTER TABLE users ADD COLUMN token VARCHAR(255) DEFAULT ''"); +} function version_50($pdo) { -- cgit v1.2.3