Untitled

Anonymous
sql
06/07/2023 4:51 AM
440 B
12
Indexable
CREATE TABLE md_hotlead(
id BIGINT AUTO_INCREMENT,
user_id BIGINT,
fullname nvarchar(50),
status TINYINT(2),
phone_number VARCHAR(20),
question TEXT,
source VARCHAR(20),
created_date DATETIME DEFAULT CURRENT_TIMESTAMP(),
modified_date DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP() ON UPDATE CURRENT_TIMESTAMP(),
PRIMARY KEY(id)
)
Editor is loading...