Files
gocqlx/migrate/doc.go

10 lines
547 B
Go
Raw Normal View History

2017-09-22 13:47:15 +02:00
// Copyright (C) 2017 ScyllaDB
// Use of this source code is governed by a ALv2-style
// license that can be found in the LICENSE file.
2020-12-03 12:52:48 +01:00
// Package migrate reads migrations from a flat directory containing CQL files.
// There is no imposed naming schema. Migration name is file name.
// The order of migrations is the lexicographical order of file names in the directory.
// You can inject execution of Go code before processing of a migration file, after processing of a migration file, or between statements in a migration file.
2017-09-22 13:47:15 +02:00
package migrate