Anda perlu menambahkan kolom TIMESTAMP seperti ini:
CREATE TABLE `$table` (
id INT(11) NOT NULL auto_increment,
site VARCHAR(1000) NOT NULL,
actions1 BIGINT(9) NOT NULL,
actions2 BIGINT(9) NOT NULL,
CreatedDateTime TIMESTAMP DEFAULT CURRENT_TIMESTAMP
PRIMARY KEY(id), UNIQUE (site))
Itu akan membuat kolom CreatedDateTime yang berisi (server) waktu baris dibuat.
Anda dapat melakukan penyisipan sebagai:
INSERT INTO `$find` (site, actions1, actions2) VALUES ('$site', 1, 0)
Untuk referensi lebih lanjut, lihat di sini