###MySQL Stuff log in as root user: `mysql -u root -p` (this will then prompt you for a password) `show databases;` `create datbase ;` `use ;` `show tables;` `create table (id integer PRIMARY KEY AUTO_INCREMENT, description text NOT NULL, completed boolean NOT NULL);` (basic formatting here is **column name** **type** **modifiers**, **column name** **type** **modifiers**, etc) `describe ;` `drop table ;`