X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2FSQL%2FPostgreSQL%2F20%2Fsetup_030_identity_nick.sql;fp=src%2Fcore%2FSQL%2FPostgreSQL%2F20%2Fsetup_030_identity_nick.sql;h=0000000000000000000000000000000000000000;hb=3cf5c49e7753be48a994917fe898730add4292b1;hp=65fb5ecb16d769513cbee243cbc415335edb6614;hpb=e4fc79c07f5301ce2c7888e709ada0945b675c4f;p=quassel.git diff --git a/src/core/SQL/PostgreSQL/20/setup_030_identity_nick.sql b/src/core/SQL/PostgreSQL/20/setup_030_identity_nick.sql deleted file mode 100644 index 65fb5ecb..00000000 --- a/src/core/SQL/PostgreSQL/20/setup_030_identity_nick.sql +++ /dev/null @@ -1,6 +0,0 @@ -CREATE TABLE identity_nick ( - nickid serial PRIMARY KEY, - identityid integer NOT NULL REFERENCES identity (identityid) ON DELETE CASCADE, - nick varchar(64) NOT NULL, - UNIQUE (identityid, nick) -)