Commit d5642d3098f33fc5128cb53a52ce80a2ade4b83e

Authored by Dmitriy Zaporozhets
1 parent f33ada85

Fix project fixtures

Showing 1 changed file with 10 additions and 10 deletions   Show diff stats
db/fixtures/development/002_project.rb
... ... @@ -7,20 +7,20 @@ Group.seed(:id, [
7 7 Project.seed(:id, [
8 8  
9 9 # Global
10   - { id: 1, name: "Underscore.js", path: "underscore", owner_id: 1 },
11   - { id: 2, name: "Diaspora", path: "diaspora", owner_id: 1 },
  10 + { id: 1, name: "Underscore.js", path: "underscore", creator_id: 1 },
  11 + { id: 2, name: "Diaspora", path: "diaspora", creator_id: 1 },
12 12  
13 13 # Brightbox
14   - { id: 3, namespace_id: 100, name: "Brightbox CLI", path: "brightbox-cli", owner_id: 1 },
15   - { id: 4, namespace_id: 100, name: "Puppet", path: "puppet", owner_id: 1 },
  14 + { id: 3, namespace_id: 100, name: "Brightbox CLI", path: "brightbox-cli", creator_id: 1 },
  15 + { id: 4, namespace_id: 100, name: "Puppet", path: "puppet", creator_id: 1 },
16 16  
17 17 # KDE
18   - { id: 5, namespace_id: 101, name: "kdebase", path: "kdebase", owner_id: 1},
19   - { id: 6, namespace_id: 101, name: "kdelibs", path: "kdelibs", owner_id: 1},
20   - { id: 7, namespace_id: 101, name: "amarok", path: "amarok", owner_id: 1},
  18 + { id: 5, namespace_id: 101, name: "kdebase", path: "kdebase", creator_id: 1},
  19 + { id: 6, namespace_id: 101, name: "kdelibs", path: "kdelibs", creator_id: 1},
  20 + { id: 7, namespace_id: 101, name: "amarok", path: "amarok", creator_id: 1},
21 21  
22 22 # GitLab
23   - { id: 8, namespace_id: 99, name: "gitlabhq", path: "gitlabhq", owner_id: 1},
24   - { id: 9, namespace_id: 99, name: "gitlab-ci", path: "gitlab-ci", owner_id: 1},
25   - { id: 10, namespace_id: 99, name: "gitlab-recipes", path: "gitlab-recipes", owner_id: 1},
  23 + { id: 8, namespace_id: 99, name: "gitlabhq", path: "gitlabhq", creator_id: 1},
  24 + { id: 9, namespace_id: 99, name: "gitlab-ci", path: "gitlab-ci", creator_id: 1},
  25 + { id: 10, namespace_id: 99, name: "gitlab-recipes", path: "gitlab-recipes", creator_id: 1},
26 26 ])
... ...