diff options
author | Matthew Somerville <matthew@mysociety.org> | 2013-02-21 22:59:49 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2013-02-21 22:59:49 +0000 |
commit | 262069b2310e7adb87dd9b3ecbc36b7bbb3f32dc (patch) | |
tree | 340c547e86ed458b61834a512da680e2a244fc63 /db/schema_0022-add_interest_count_to_problems.sql | |
parent | b2aa34beeabd3a3eb67549a0f303691a5e4736c0 (diff) |
Tweak interest_count schema creation.
Diffstat (limited to 'db/schema_0022-add_interest_count_to_problems.sql')
-rw-r--r-- | db/schema_0022-add_interest_count_to_problems.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/schema_0022-add_interest_count_to_problems.sql b/db/schema_0022-add_interest_count_to_problems.sql index 62092aa0a..4a4703ae1 100644 --- a/db/schema_0022-add_interest_count_to_problems.sql +++ b/db/schema_0022-add_interest_count_to_problems.sql @@ -1,6 +1,6 @@ begin; ALTER table problem - ADD COLUMN interest_count integer; + ADD COLUMN interest_count integer DEFAULT 0; commit; |