summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-07 06:59:03 -0700
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-05-07 06:59:03 -0700
commitaf5d0e9e92f3fb818c73f1b8b991ea61ddc35dd4 (patch)
tree2695e4d262df1fdfc213a2c73fbee76f0b5e05be /db
parentdc41ffa309fee7697693cfaea42486707d98f5f0 (diff)
parenta50d96a84149c34c85f9f02cacfd2d15582c8eff (diff)
downloadgitlab-ce-af5d0e9e92f3fb818c73f1b8b991ea61ddc35dd4.tar.gz
Merge pull request #3275 from Undev/feature/code_cleanup_remove_old_hashes
Code cleanup: Replace old hashes and remove trailing spaces
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/07_milestones.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/db/fixtures/development/07_milestones.rb b/db/fixtures/development/07_milestones.rb
index a77f619f995..3135bf3a4f4 100644
--- a/db/fixtures/development/07_milestones.rb
+++ b/db/fixtures/development/07_milestones.rb
@@ -1,13 +1,13 @@
Milestone.seed(:id, [
- { :id => 1, :project_id => 1, :title => 'v' + Faker::Address.zip_code },
- { :id => 2, :project_id => 1, :title => 'v' + Faker::Address.zip_code },
- { :id => 3, :project_id => 1, :title => 'v' + Faker::Address.zip_code },
- { :id => 4, :project_id => 2, :title => 'v' + Faker::Address.zip_code },
- { :id => 5, :project_id => 2, :title => 'v' + Faker::Address.zip_code },
+ { id: 1, project_id: 1, title: 'v' + Faker::Address.zip_code },
+ { id: 2, project_id: 1, title: 'v' + Faker::Address.zip_code },
+ { id: 3, project_id: 1, title: 'v' + Faker::Address.zip_code },
+ { id: 4, project_id: 2, title: 'v' + Faker::Address.zip_code },
+ { id: 5, project_id: 2, title: 'v' + Faker::Address.zip_code },
- { :id => 6, :project_id => 2, :title => 'v' + Faker::Address.zip_code },
- { :id => 7, :project_id => 2, :title => 'v' + Faker::Address.zip_code },
- { :id => 8, :project_id => 3, :title => 'v' + Faker::Address.zip_code },
- { :id => 9, :project_id => 3, :title => 'v' + Faker::Address.zip_code },
- { :id => 11, :project_id => 3, :title => 'v' + Faker::Address.zip_code },
+ { id: 6, project_id: 2, title: 'v' + Faker::Address.zip_code },
+ { id: 7, project_id: 2, title: 'v' + Faker::Address.zip_code },
+ { id: 8, project_id: 3, title: 'v' + Faker::Address.zip_code },
+ { id: 9, project_id: 3, title: 'v' + Faker::Address.zip_code },
+ { id: 11, project_id: 3, title: 'v' + Faker::Address.zip_code },
])