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
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-24 01:10:59 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-11-24 01:10:59 +0400
commitd71a68af41e875f7391a385a252052b4f7f5583e (patch)
treec9af019b2fd42d62608a4104ee3a79fd21811170 /db/fixtures/development
parent0693215c30d597802b134f7c663aa5deba6faa00 (diff)
Fxied seeds
Diffstat (limited to 'db/fixtures/development')
-rw-r--r--db/fixtures/development/002_project.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/db/fixtures/development/002_project.rb b/db/fixtures/development/002_project.rb
index eb68b5fe93a..b6c0b54764f 100644
--- a/db/fixtures/development/002_project.rb
+++ b/db/fixtures/development/002_project.rb
@@ -1,5 +1,5 @@
Project.seed(:id, [
- { id: 1, name: "Underscore.js", path: "underscore", code: "underscore", owner_id: 1 },
- { id: 2, name: "Diaspora", path: "diaspora", code: "diaspora", owner_id: 1 },
- { id: 3, name: "Ruby on Rails", path: "rails", code: "rails", owner_id: 1 }
+ { id: 1, name: "Underscore.js", path: "underscore", owner_id: 1 },
+ { id: 2, name: "Diaspora", path: "diaspora", owner_id: 1 },
+ { id: 3, name: "Ruby on Rails", path: "rails", owner_id: 1 }
])