Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/db
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-06 00:50:12 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2013-01-06 00:50:12 +0400
commitd5642d3098f33fc5128cb53a52ce80a2ade4b83e (patch)
tree76617276ae8bcd1c2baa6396e7e011f6a3ff8703 /db
parentf33ada855c68a24499737deff701e9d7387bc98d (diff)
Fix project fixtures
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/002_project.rb20
1 files changed, 10 insertions, 10 deletions
diff --git a/db/fixtures/development/002_project.rb b/db/fixtures/development/002_project.rb
index d145cc6254f..e50ab5d9d52 100644
--- a/db/fixtures/development/002_project.rb
+++ b/db/fixtures/development/002_project.rb
@@ -7,20 +7,20 @@ Group.seed(:id, [
Project.seed(:id, [
# Global
- { id: 1, name: "Underscore.js", path: "underscore", owner_id: 1 },
- { id: 2, name: "Diaspora", path: "diaspora", owner_id: 1 },
+ { id: 1, name: "Underscore.js", path: "underscore", creator_id: 1 },
+ { id: 2, name: "Diaspora", path: "diaspora", creator_id: 1 },
# Brightbox
- { id: 3, namespace_id: 100, name: "Brightbox CLI", path: "brightbox-cli", owner_id: 1 },
- { id: 4, namespace_id: 100, name: "Puppet", path: "puppet", owner_id: 1 },
+ { id: 3, namespace_id: 100, name: "Brightbox CLI", path: "brightbox-cli", creator_id: 1 },
+ { id: 4, namespace_id: 100, name: "Puppet", path: "puppet", creator_id: 1 },
# KDE
- { id: 5, namespace_id: 101, name: "kdebase", path: "kdebase", owner_id: 1},
- { id: 6, namespace_id: 101, name: "kdelibs", path: "kdelibs", owner_id: 1},
- { id: 7, namespace_id: 101, name: "amarok", path: "amarok", owner_id: 1},
+ { id: 5, namespace_id: 101, name: "kdebase", path: "kdebase", creator_id: 1},
+ { id: 6, namespace_id: 101, name: "kdelibs", path: "kdelibs", creator_id: 1},
+ { id: 7, namespace_id: 101, name: "amarok", path: "amarok", creator_id: 1},
# GitLab
- { id: 8, namespace_id: 99, name: "gitlabhq", path: "gitlabhq", owner_id: 1},
- { id: 9, namespace_id: 99, name: "gitlab-ci", path: "gitlab-ci", owner_id: 1},
- { id: 10, namespace_id: 99, name: "gitlab-recipes", path: "gitlab-recipes", owner_id: 1},
+ { id: 8, namespace_id: 99, name: "gitlabhq", path: "gitlabhq", creator_id: 1},
+ { id: 9, namespace_id: 99, name: "gitlab-ci", path: "gitlab-ci", creator_id: 1},
+ { id: 10, namespace_id: 99, name: "gitlab-recipes", path: "gitlab-recipes", creator_id: 1},
])