diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-06-30 21:52:02 -0300 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-06-30 21:52:02 -0300 |
commit | 06d0b7048ebcdfdf6e24eec3ac7dc8fb0327dd6f (patch) | |
tree | eb006b4c560781186f1debd2437c02edf6008878 /app/Schema/Sqlite.php | |
parent | f70ac7d65fa0e7f1e6a9559242d9c141ba5c9eb3 (diff) |
Merge pull-request: Github authentication #162
Diffstat (limited to 'app/Schema/Sqlite.php')
-rw-r--r-- | app/Schema/Sqlite.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php index 8f8e498a..6ea0541c 100644 --- a/app/Schema/Sqlite.php +++ b/app/Schema/Sqlite.php @@ -3,7 +3,12 @@ namespace Schema; use Core\Security; -const VERSION = 19; +const VERSION = 20; + +function version_20($pdo) +{ + $pdo->exec("ALTER TABLE users ADD COLUMN github_id TEXT"); +} function version_19($pdo) { |