Skip to content

Instantly share code, notes, and snippets.

@afaustinos
afaustinos / up.sql
Created June 25, 2022 10:04 — forked from jorgefsilva/up.sql
up with inserts
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'),