7 lines
270 B
SQL
7 lines
270 B
SQL
CREATE TABLE IF NOT EXISTS about_companies (
|
|
id SERIAL PRIMARY KEY,
|
|
description text,
|
|
created_at TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
updated_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP,
|
|
deleted_at TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP
|
|
); |