I'm using Microsoft SQL Server Management Studio
. I am trying to create this database, but I can not figure out what I'm doing wrong with the timestamp; it has to default now.
This is the Create Table
query:
create table users(
id int identity primary key,
username varchar(255) unique,
created_at date, TIMESTAMP default)