blcompro/database/migrations/000004_create_faq_sections_table.up.sql
2025-05-29 08:55:21 +00:00

8 lines
291 B
SQL

CREATE TABLE IF NOT EXISTS faq_sections (
id SERIAL PRIMARY KEY,
title varchar(255),
description text,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
deleted_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
);