Merge pull request #1316 from dsander/do-not-override-existing-users

Do not seed the database when the configured seed user already exists

Dominik Sander 9 年之前
父节点
当前提交
53b6ef1091
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      db/seeds.rb

+ 6 - 0
db/seeds.rb

@@ -2,6 +2,12 @@
2 2
 # The data can then be loaded with the rake db:seed (or created alongside the db with db:setup).
3 3
 
4 4
 user = User.find_or_initialize_by(:email => ENV['SEED_EMAIL'] || "admin@example.com")
5
+
6
+if user.persisted?
7
+  puts "User with email '#{user.email}' already exists, not seeding."
8
+  exit
9
+end
10
+
5 11
 user.username = ENV['SEED_USERNAME'] || "admin"
6 12
 user.password = ENV['SEED_PASSWORD'] || "password"
7 13
 user.password_confirmation = ENV['SEED_PASSWORD'] || "password"