Browse Source

Fixed initial setup.

Martin Edenhofer 9 years ago
parent
commit
58de72cfc1
1 changed files with 3 additions and 0 deletions
  1. 3 0
      db/migrate/20151109000001_create_chat.rb

+ 3 - 0
db/migrate/20151109000001_create_chat.rb

@@ -58,6 +58,9 @@ class CreateChat < ActiveRecord::Migration
     end
     add_index :chat_agents, [:created_by_id], unique: true
 
+    # return if it's a new setup
+    return if !Setting.find_by(name: 'system_init_done')
+
     Role.create_if_not_exists(
       name: 'Chat',
       note: 'Access to chat feature.',