diff options
| author | Frederic Guillot <fred@kanboard.net> | 2015-03-12 23:03:51 -0400 |
|---|---|---|
| committer | Frederic Guillot <fred@kanboard.net> | 2015-03-12 23:03:51 -0400 |
| commit | 4700139a86d1ef44eabe43edb5a4abff9c645811 (patch) | |
| tree | a4bf846ff610a59d91fa6d0405b0460dbd2d9e31 /app/Schema/Postgres.php | |
| parent | 925ede9b48bef67739d26f0d0a394342f2d8edf0 (diff) | |
Start to develop the budget module
Diffstat (limited to 'app/Schema/Postgres.php')
| -rw-r--r-- | app/Schema/Postgres.php | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/app/Schema/Postgres.php b/app/Schema/Postgres.php index fe01b1e9..124aec76 100644 --- a/app/Schema/Postgres.php +++ b/app/Schema/Postgres.php @@ -6,7 +6,19 @@ use PDO; use Core\Security; use Model\Link; -const VERSION = 32; +const VERSION = 33; + +function version_33($pdo) +{ + $pdo->exec('CREATE TABLE budget_lines ( + "id" SERIAL PRIMARY KEY, + "project_id" INTEGER NOT NULL, + "amount" REAL NOT NULL, + "date" VARCHAR(10) NOT NULL, + "comment" TEXT, + FOREIGN KEY(project_id) REFERENCES projects(id) ON DELETE CASCADE + )'); +} function version_32($pdo) { |
