SQL Auto Timestamp
create table table_name(
column_name timestamp default CURRENT_TIMESTAMP,
);
Literate Lentil
create table table_name(
column_name timestamp default CURRENT_TIMESTAMP,
);