From 52c119052af534bd20422b245ca89e1b2f58f32f Mon Sep 17 00:00:00 2001 From: Hiroe Jun Date: Tue, 25 Apr 2017 22:15:37 +0900 Subject: [PATCH] Refactor seed.rb (#2430) --- db/seeds.rb | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/db/seeds.rb b/db/seeds.rb index 997de93e8..cdce04994 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -1,9 +1,7 @@ -web_app = Doorkeeper::Application.new(name: 'Web', superapp: true, redirect_uri: Doorkeeper.configuration.native_redirect_uri, scopes: 'read write follow') -web_app.save! +Doorkeeper::Application.create!(name: 'Web', superapp: true, redirect_uri: Doorkeeper.configuration.native_redirect_uri, scopes: 'read write follow') if Rails.env.development? domain = ENV['LOCAL_DOMAIN'] || Rails.configuration.x.local_domain - admin = Account.where(username: 'admin').first_or_initialize(username: 'admin') - admin.save! + admin = Account.where(username: 'admin').first_or_create!(username: 'admin') User.where(email: "admin@#{domain}").first_or_initialize(email: "admin@#{domain}", password: 'mastodonadmin', password_confirmation: 'mastodonadmin', confirmed_at: Time.now.utc, admin: true, account: admin).save! end