From eab3cd6b2b6327e9bed87ef419364e14ab9ee94d Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Wed, 1 Aug 2018 18:53:49 -0700 Subject: [PATCH] ownerId for domains is not implemented yet --- migrations/schema.sql | 4 ---- 1 file changed, 4 deletions(-) diff --git a/migrations/schema.sql b/migrations/schema.sql index 9984ea989..b26ed00c6 100644 --- a/migrations/schema.sql +++ b/migrations/schema.sql @@ -144,10 +144,6 @@ CREATE TABLE IF NOT EXISTS domains( configJson TEXT, /* JSON containing the dns backend provider config */ tlsConfigJson TEXT, /* JSON containing the tls provider config */ - ownerId VARCHAR(128), - - FOREIGN KEY(ownerId) REFERENCES users(id), - PRIMARY KEY (domain)) /* the default db collation is utf8mb4_unicode_ci but for the app table domain constraint we have to use the old one */