diff options
| author | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 17:35:39 -0400 | 
|---|---|---|
| committer | Frédéric Guillot <fred@kanboard.net> | 2014-05-17 17:35:39 -0400 | 
| commit | 5e4b40665fa11ce0fd0fe957a19e2b7e63f47446 (patch) | |
| tree | b0e458788f84c03608154866ec3e964ec89ccb14 /schemas/sqlite.php | |
| parent | 09da5720e8dccaa2437a7b25d992eaa104753684 (diff) | |
Rewrite board drag and drop with jquery (touch devices, IE, auto-update)
Diffstat (limited to 'schemas/sqlite.php')
| -rw-r--r-- | schemas/sqlite.php | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/schemas/sqlite.php b/schemas/sqlite.php index d3e4ce9b..94580235 100644 --- a/schemas/sqlite.php +++ b/schemas/sqlite.php @@ -2,6 +2,11 @@  namespace Schema; +function version_15($pdo) +{ +    $pdo->exec("ALTER TABLE projects ADD COLUMN last_modified INTEGER DEFAULT 0"); +} +  function version_14($pdo)  {      $pdo->exec("ALTER TABLE users ADD COLUMN name TEXT");  | 
