diff options
author | hellekin <hellekin@cepheide.org> | 2020-10-06 00:21:40 +0200 |
---|---|---|
committer | hellekin <hellekin@cepheide.org> | 2020-10-06 00:21:40 +0200 |
commit | aff9cad1d32eaf534fdd2a53d5cf3616404ff75a (patch) | |
tree | 2b8878678657713a2e99645a52e2eed751969161 /db | |
parent | 0b6a7bafaef612793fa9cdf0646cbb47ffe0e583 (diff) | |
download | incommon-map-aff9cad1d32eaf534fdd2a53d5cf3616404ff75a.tar.gz |
Ensure only one Agent exists for a given group
Diffstat (limited to 'db')
-rw-r--r-- | db/migrate/20201005154908_create_agents.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/db/migrate/20201005154908_create_agents.rb b/db/migrate/20201005154908_create_agents.rb index 32792ee..cc5a00f 100644 --- a/db/migrate/20201005154908_create_agents.rb +++ b/db/migrate/20201005154908_create_agents.rb @@ -6,6 +6,7 @@ class CreateAgents < ActiveRecord::Migration[6.0] t.timestamps end + add_index :agents, [:name], unique: true add_index :agents, [:uuid], unique: true end end |