From: Thierry Parmentelat Date: Thu, 9 Apr 2009 11:43:09 +0000 (+0000) Subject: remove UNIQUE constraint on peername as that was preventing from re-creating the... X-Git-Tag: PLCAPI-4.3-6~3 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=678b1d8a9e5fe70af28ddf2a4efbd9dda127bb12;p=plcapi.git remove UNIQUE constraint on peername as that was preventing from re-creating the same peername again --- diff --git a/planetlab5.sql b/planetlab5.sql index 786e11cb..f4c4ef95 100644 --- a/planetlab5.sql +++ b/planetlab5.sql @@ -768,7 +768,7 @@ CREATE INDEX initscripts_name_idx ON initscripts (name); -- Peers CREATE TABLE peers ( peer_id serial PRIMARY KEY, -- Peer identifier - peername text UNIQUE NOT NULL, -- Peer name + peername text NOT NULL, -- Peer name peer_url text NOT NULL, -- (HTTPS) URL of the peer PLCAPI interface cacert text, -- (SSL) Public certificate of peer API server key text, -- (GPG) Public key used for authentication