mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
Updated to current hg head of mumble-django
This commit is contained in:
10
mumble/conversionsql/sqlite/02-schema-mumbleuser.sql
Normal file
10
mumble/conversionsql/sqlite/02-schema-mumbleuser.sql
Normal file
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE "mumble_mumbleuser_new" (
|
||||
"id" integer NOT NULL PRIMARY KEY,
|
||||
"mumbleid" integer NOT NULL,
|
||||
"name" varchar(200) NOT NULL,
|
||||
"password" varchar(200) NOT NULL,
|
||||
"server_id" integer NOT NULL REFERENCES "mumble_mumble" ("id"),
|
||||
"owner_id" integer REFERENCES "auth_user" ("id"),
|
||||
UNIQUE ("server_id", "owner_id"),
|
||||
UNIQUE ("server_id", "mumbleid")
|
||||
);
|
||||
Reference in New Issue
Block a user