summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorAndrey Kumanyaev <me@zzet.org>2013-05-05 18:01:10 +0400
committerAndrey Kumanyaev <me@zzet.org>2013-05-05 18:01:10 +0400
commit67ccc8b52aceebea9c0cb22b3277daf0b467c78e (patch)
tree6139a7674fe0f9d70a0af51c383fd72aa91cc54c /db
parent493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff)
downloadgitlab-ce-67ccc8b52aceebea9c0cb22b3277daf0b467c78e.tar.gz
Replace old hashes with new 1.9 ruby hashes (rebase)
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 },
])