This commit is contained in:
2025-11-08 16:11:38 +08:00
parent a0c1cc3f71
commit 202688e786
2 changed files with 4 additions and 4 deletions

View File

@@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS domains (
user_id INTEGER REFERENCES users(id),
status VARCHAR(20) DEFAULT 'pending',
denial_reason TEXT,
created_at TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
UNIQUE(name, tld)
);