#!/bin/bash
# Created on {{date}}{{attribution}}
set -e

if [[ "${MIGRAT_ACTION}" == "up" ]]; then
	# TODO: perform up action
elif [[ "${MIGRAT_ACTION}" == "down" ]]; then
	# TODO: perform down action
fi
