diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-12-25 17:13:58 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2009-12-25 17:13:58 +0000 |
commit | 8db9ecef08ee8afe600bdb2d95ead0162b8b43d4 (patch) | |
tree | ecf477a4dd955203267a82331cfca67b090b781a /test | |
parent | 9fb40b1a2f700ce6e5bd31438fe9c9ef737555ab (diff) | |
download | redmine-8db9ecef08ee8afe600bdb2d95ead0162b8b43d4.tar.gz redmine-8db9ecef08ee8afe600bdb2d95ead0162b8b43d4.zip |
Removes column opt in enumerations table.
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3240 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'test')
-rw-r--r-- | test/fixtures/enumerations.yml | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/test/fixtures/enumerations.yml b/test/fixtures/enumerations.yml index 5b9bc9297..650a48c3e 100644 --- a/test/fixtures/enumerations.yml +++ b/test/fixtures/enumerations.yml @@ -2,63 +2,53 @@ enumerations_001: name: Uncategorized id: 1 - opt: DCAT type: DocumentCategory active: true enumerations_002: name: User documentation id: 2 - opt: DCAT type: DocumentCategory active: true enumerations_003: name: Technical documentation id: 3 - opt: DCAT type: DocumentCategory active: true enumerations_004: name: Low id: 4 - opt: IPRI type: IssuePriority active: true enumerations_005: name: Normal id: 5 - opt: IPRI type: IssuePriority is_default: true active: true enumerations_006: name: High id: 6 - opt: IPRI type: IssuePriority active: true enumerations_007: name: Urgent id: 7 - opt: IPRI type: IssuePriority active: true enumerations_008: name: Immediate id: 8 - opt: IPRI type: IssuePriority active: true enumerations_009: name: Design id: 9 - opt: ACTI type: TimeEntryActivity position: 1 active: true enumerations_010: name: Development id: 10 - opt: ACTI type: TimeEntryActivity position: 2 is_default: true @@ -66,27 +56,23 @@ enumerations_010: enumerations_011: name: QA id: 11 - opt: ACTI type: TimeEntryActivity position: 3 active: true enumerations_012: name: Default Enumeration id: 12 - opt: '' type: Enumeration is_default: true active: true enumerations_013: name: Another Enumeration id: 13 - opt: '' type: Enumeration active: true enumerations_014: name: Inactive Activity id: 14 - opt: ACTI type: TimeEntryActivity position: 4 active: false |