diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-16 09:38:01 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2013-02-16 09:38:01 +0000 |
commit | a45c0dc55057e8c10c2d17f8dc26be5d9b771f8d (patch) | |
tree | 93fa80fd96d6c404515d23d3ce1662c2ef7ee517 /test/fixtures | |
parent | 723e21243e8df3cbb8937c32410797fa84c9cb79 (diff) | |
download | redmine-a45c0dc55057e8c10c2d17f8dc26be5d9b771f8d.tar.gz redmine-a45c0dc55057e8c10c2d17f8dc26be5d9b771f8d.zip |
Adds closed_on column that stores the time of the last closing (#824).
The value is preserved when reopening the issue.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11402 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test/fixtures')
-rw-r--r-- | test/fixtures/issues.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/fixtures/issues.yml b/test/fixtures/issues.yml index 531089de0..8eb8ae1a5 100644 --- a/test/fixtures/issues.yml +++ b/test/fixtures/issues.yml @@ -152,6 +152,7 @@ issues_008: root_id: 8 lft: 1 rgt: 2 + closed_on: <%= 3.days.ago.to_s(:db) %> issues_009: created_on: <%= 1.minute.ago.to_s(:db) %> project_id: 5 @@ -209,6 +210,7 @@ issues_011: root_id: 11 lft: 1 rgt: 2 + closed_on: <%= 1.day.ago.to_s(:db) %> issues_012: created_on: <%= 3.days.ago.to_s(:db) %> project_id: 1 @@ -228,6 +230,7 @@ issues_012: root_id: 12 lft: 1 rgt: 2 + closed_on: <%= 1.day.ago.to_s(:db) %> issues_013: created_on: <%= 5.days.ago.to_s(:db) %> project_id: 3 |