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:
authorCiro Santillli <ciro.santilli@gmail.com>2014-03-24 02:49:22 +0400
committerCiro Santillli <ciro.santilli@gmail.com>2014-03-24 02:49:22 +0400
commit6672d6492f8a118d6ef26efaec38d3b1bab9223a (patch)
treecf4a3f3ec1adb0f0b994b43a3c6e0493f0ba039f /db
parentae1a3148242907b21e9952f1964919622b4f3129 (diff)
Start development Key seed id from 1.
Diffstat (limited to 'db')
-rw-r--r--db/fixtures/development/11_keys.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/db/fixtures/development/11_keys.rb b/db/fixtures/development/11_keys.rb
index 42171393d1b..61329f197c3 100644
--- a/db/fixtures/development/11_keys.rb
+++ b/db/fixtures/development/11_keys.rb
@@ -2,7 +2,7 @@ Gitlab::Seeder.quiet do
User.first(30).each_with_index do |user, i|
Key.seed(:id, [
{
- id: i,
+ id: i + 1,
title: "Sample key #{i}",
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAIEAiPWx6WM4lhHNedGfBpPJNPpZ7yKu+dnn1SJejgt#{i + 100}6k6YjzGGphH2TUxwKzxcKDKKezwkpfnxPkSMkuEspGRt/aZZ9wa++Oi7Qkr8prgHc4soW6NUlfDzpvZK2H5E7eQaSeP3SAwGmQKUFHCddNaP0L+hM7zhFNzjFvpaMgJw0=",
user_id: user.id,