This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE "items" ( | |
"id" integer not null primary key autoincrement, | |
"item" varchar not null, | |
"created_at" TIMESTAMP NOT null, | |
"updated_at" TIMESTAMP NOT null | |
); | |
INSERT INTO items (item,created_at,updated_at) VALUES | |
('Duane Towne','2020-12-17 11:51:20','2020-12-17 11:51:20'), | |
('Providenci Conn PhD','2020-12-17 11:51:20','2020-12-17 11:51:20'), |