Hi, I think the create table syntax should look like this:
CREATE TABLE IF NOT EXISTS member ( name TEXT NOT NULL, datestamp CURRENT_TIMESTAMP );
Or rather:
CREATE TABLE IF NOT EXISTS member ( name TEXT NOT NULL, datestamp TEXT DEFAULT CURRENT_TIMESTAMP );
Hi, I think the create table syntax should look like this:
CREATE TABLE IF NOT EXISTS member (
name TEXT NOT NULL,
datestamp CURRENT_TIMESTAMP );