Skip to content

Commit

Permalink
Manually capture ddl
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-finley committed Mar 10, 2024
1 parent 794b9c8 commit 89ba0ac
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ddl.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
CREATE TABLE "known_birthdates" (
"id" int NOT NULL AUTO_INCREMENT,
"birth_date_epoch" int DEFAULT NULL,
"times_seen" int DEFAULT NULL,
"tweeted" tinyint(1) DEFAULT NULL,
PRIMARY KEY ("id")
);

0 comments on commit 89ba0ac

Please sign in to comment.