Once the migration scripts are in place the changes can be applied to the database by this command:
edgedb migration apply [options]
The tool will find all the unapplied migrations in
dbschema/migrations/
directory and sequentially run them on the
target instance.
The migration apply
command runs on the database it is connected
to. For specifying the connection target see connection options.
Do not print any messages, only indicate success by exit status.
Directory where the schema files are located. Defaults to
./dbschema
.
Upgrade to a specified revision.
Unique prefix of the revision can be specified instead of full revision name.
If this revision is applied, the command is no-op. The command ensures that this revision present, but it’s not an error if more revisions are applied on top.
The --dev-mod
option is compatible with EdgeDB server 3.0 and
above.
Apply the current schema changes on top of the current migration history, without having created a new migration. This works the same way as edgedb watch but without starting a long-running watch task.