2026-04-01 00:58:42 +08:00
|
|
|
CREATE TABLE brand_questions (
|
2026-04-09 14:43:20 +08:00
|
|
|
id BIGSERIAL PRIMARY KEY,
|
|
|
|
|
tenant_id BIGINT NOT NULL REFERENCES tenants(id),
|
|
|
|
|
brand_id BIGINT NOT NULL REFERENCES brands(id),
|
|
|
|
|
keyword_id BIGINT NOT NULL REFERENCES brand_keywords(id),
|
|
|
|
|
question_text TEXT NOT NULL,
|
|
|
|
|
status VARCHAR(20) NOT NULL DEFAULT 'active',
|
|
|
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
|
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
|
|
|
deleted_at TIMESTAMPTZ
|
2026-04-01 00:58:42 +08:00
|
|
|
);
|
|
|
|
|
CREATE INDEX idx_brand_questions_keyword ON brand_questions(keyword_id);
|