This patch adds a new migration event type CallComment that it triggered by adding `-- CALL <name>;` comment in a CQL file. Fixes #101
10 lines
538 B
Go
10 lines
538 B
Go
// Copyright (C) 2017 ScyllaDB
|
|
// Use of this source code is governed by a ALv2-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
// Package migrate provides simple and flexible CLQ migrations.
|
|
// Migrations can be read from a flat directory containing cql files.
|
|
// There is no imposed naming schema, migration name is file name and the migrations are processed in lexicographical order.
|
|
// Caller provides a gocqlx.Session, the session must use a desired keyspace as migrate would try to create migrations table.
|
|
package migrate
|