Skip to content

Instantly share code, notes, and snippets.

@yousefmasry4
Last active January 22, 2018 12:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yousefmasry4/57f6b048cc1a74eacff2fee97270b24a to your computer and use it in GitHub Desktop.
Save yousefmasry4/57f6b048cc1a74eacff2fee97270b24a to your computer and use it in GitHub Desktop.
d.sqlite3
BEGIN TRANSACTION;
CREATE TABLE "users" (
`inpu` TEXT UNIQUE,
`gen` TEXT,
`stat` TEXT,
`mzag` TEXT,
`al2` TEXT,
`outpu` TEXT
);
INSERT INTO `users` VALUES ('hi','-','-','h','-','hi');
COMMIT;
BEGIN TRANSACTION;
CREATE TABLE "users" (
`inpu` TEXT UNIQUE,
`gen` TEXT,
`stat` TEXT,
`mzag` TEXT,
`al2` TEXT,
`outpu` TEXT
);
INSERT INTO `users` VALUES ('hi','-','-','h','-','hi');
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment