Adding a futuristic time inside a column in a table in MySQL
CREATE TABLE products ( id int not null auto_increment PRIMARY KEY, Name varchar(30) not null, Reliability int default 0, date timestamp default now(), expiration timestamp default (now()+31536000) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; I'm trying to add an expiration date for products…