Database looks like
$ psql checkouts <<< "\d"
List of relations
Schema | Name | Type | Owner
--------+-----------+-------+--------
public | checkouts | table | brooks
(1 row)
$ psql checkouts <<< "\d checkouts"
| #!/usr/bin/env python | |
| """ | |
| Build a heroes of the storm database | |
| """ | |
| import csv | |
| import logging | |
| import time | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy import Column, Integer, Boolean, create_engine |
Database looks like
$ psql checkouts <<< "\d"
List of relations
Schema | Name | Type | Owner
--------+-----------+-------+--------
public | checkouts | table | brooks
(1 row)
$ psql checkouts <<< "\d checkouts"