# Create Db and table
## Create the DB
- Start cloud9 session
- Start MySQL
- Create Db 'test_db'
- Confirm Db was created.

## Create table
- Create table 'test_table' with fields:
  - Id as integer, do not allow nulls, and set as primary key
  - Name as string max 100, do not allow nulls
  - Description as string max 1000
- Confirm table was created

## Cleanup
- Remove table and confirm table was removed
- Remove db and confirm db was removed.

## History:
2018/06/16 3:43pm  (9:25)

- Current Record: 9:25