diff options
| author | Andrey Kumanyaev <me@zzet.org> | 2013-05-05 18:01:10 +0400 |
|---|---|---|
| committer | Andrey Kumanyaev <me@zzet.org> | 2013-05-05 18:01:10 +0400 |
| commit | 67ccc8b52aceebea9c0cb22b3277daf0b467c78e (patch) | |
| tree | 6139a7674fe0f9d70a0af51c383fd72aa91cc54c /db | |
| parent | 493b5ff011d5788f669adabf978a40b49b8cf6a3 (diff) | |
| download | gitlab-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.rb | 20 |
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 }, ]) |
