blob: 0b27d14c04f7f2ac5fd59f3831295cadb4d6d1e8 [file] [log] [blame]
#!/usr/bin/env -S bash -e
# Copyright 2019 The Go Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# Script for creating a new migration file.
migrate create -ext sql -dir migrations -seq $1
HEADER="-- Copyright $(date +%Y) The Go Authors. All rights reserved.
-- Use of this source code is governed by a BSD-style
-- license that can be found in the LICENSE file.
BEGIN;
-- Write your migration here.
END;"
for f in $(ls migrations | tail -n 2); do echo "$HEADER" >> "migrations/$f"; done