This is a simple POC to test migrating data from ows_assets.asset_upload to ows_asset_transcoder.
This has been run in the DEV database for ows_asset_transcoder.

### Installation
```bash
$ pip install pipenv
$ pipenv install --ignore-pipfile
```

### Configuration
Copy .env.shadow to .env and add the appropriate environement variables for your environment.
`cp .env.shadow .env`

### Running
```bash
$ pipenv run python asset-migration.py
```

For the purpose of the POC, the script creates a staging table in the DEV db and populates that table with data from ows_assets. The data extracted from ows_assets has also been limited to 10 rows. If you wish to run the migration again, just comment out the `create_staging_table()` function call on line 118.
