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

8 lines
296 B
SQL

CREATE TABLE IF NOT EXISTS client_sections (
id SERIAL PRIMARY KEY,
name varchar(150),
path_icon text NULL,
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
deleted_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
);