Multi-Schema Migration
Using the Atlas migration engine, an Ent schema can be defined and managed across multiple database schemas. This guides show how to achieve this with three simple steps:
The multi-schema migration feature is fully implemented in the Atlas CLI and requires a login to use:
atlas login
Install Atlas​
To install the latest release of Atlas, simply run one of the following commands in your terminal, or check out the Atlas website:
- macOS + Linux
- Homebrew
- Docker
- Windows
curl -sSf https://atlasgo.sh | sh
brew install ariga/tap/atlas
docker pull arigaio/atlas
docker run --rm arigaio/atlas --help
If the container needs access to the host network or a local directory, use the --net=host
flag and mount the desired
directory:
docker run --rm --net=host \
-v $(pwd)/migrations:/migrations \
arigaio/atlas migrate apply
--url "mysql://root:pass@:3306/test"
Download the latest release and move the atlas binary to a file location on your system PATH.
Login to Atlas​
$ atlas login a8m
You are now connected to "a8m" on Atlas Cloud.
Annotate your Ent schemas​
The entsql
package allows annotating an Ent schema with a database schema name. For example:
// Annotations of the User.
func (User) Annotations() []schema.Annotation {
return []schema.Annotation{
entsql.Schema("db3"),
}
}
To share the same schema configuration across multiple Ent schemas, you can either use ent.Mixin
or define and embed a base schema:
- Mixin schema
- Base schema
// Mixin holds the default configuration for most schemas in this package.
type Mixin struct {
mixin.Schema
}
// Annotations of the Mixin.
func (Mixin) Annotations() []schema.Annotation {
return []schema.Annotation{
entsql.Schema("db1"),
}
}
// User holds the edge schema definition of the User entity.
type User struct {
ent.Schema
}
// Mixin defines the schemas that mixed into this schema.
func (User) Mixin() []ent.Mixin {
return []ent.Mixin{
Mixin{},
}
}
// base holds the default configuration for most schemas in this package.
type base struct {
ent.Schema
}
// Annotations of the base schema.
func (base) Annotations() []schema.Annotation {
return []schema.Annotation{
entsql.Schema("db1"),
}
}
// User holds the edge schema definition of the User entity.
type User struct {
base
}
Generate migrations​
To generate a migration, use the atlas migrate diff
command. For example:
- MySQL
- MariaDB
- PostgreSQL
atlas migrate diff \
--to "ent://ent/schema" \
--dev-url "docker://mysql/8"
atlas migrate diff \
--to "ent://ent/schema" \
--dev-url "docker://maria/8"
atlas migrate diff \
--to "ent://ent/schema" \
--dev-url "docker://postgres/15/dev"
The migrate
diff command generates a list of SQL statements without indentation by default. If you would like to
generate the SQL statements with indentation, use the --format
flag. For example:
atlas migrate diff \
--to "ent://ent/schema" \
--dev-url "docker://postgres/15/dev" \
--format "{{ sql . \" \" }}"
Controlling the Ent Client​
When the sql/schemaconfig
feature flag is enabled, Ent automatically uses the schema names defined in your ent/schema
as the default runtime configuration.
This means that any entsql.Schema("db_name")
annotation is applied by default, and you can optionally override it at runtime if needed.
To enable the feature for your project, use the --feature
flag:
--feature sql/schemaconfig
Once enabled, you can also override the schema configuration at runtime using the ent.AlternateSchema
option:
c, err := ent.Open(dialect, conn, ent.AlternateSchema(ent.SchemaConfig{
User: "usersdb",
Car: "carsdb",
}))
c.User.Query().All(ctx) // SELECT * FROM `usersdb`.`users`
c.Car.Query().All(ctx) // SELECT * FROM `carsdb`.`cars`