Skip to content

Instantly share code, notes, and snippets.

@jacoelho
Created July 31, 2016 19:57
Show Gist options
  • Save jacoelho/6f0e703b5b2beefdee51973db88aee3a to your computer and use it in GitHub Desktop.
Save jacoelho/6f0e703b5b2beefdee51973db88aee3a to your computer and use it in GitHub Desktop.
(defn create-table
[]
(jdbc/db-do-commands
(db-connection)
(jdbc/create-table-ddl :todo_list
[[:id :int "PRIMARY KEY AUTO_INCREMENT"]
[:title "varchar(30)"]
[:text "varchar(1024)"]])))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment