edgedb migration apply​

Once the migration scripts are in place the changes can be applied to the database by this command:

  1. edgedb migration apply [options]

The tool will find all the unapplied migrations in dbschema/migrations/ directory and sequentially run them on the target instance.

Options​

The migration apply command runs on the database it is connected to. For specifying the connection target see connection options.

--quiet

Do not print any messages, only indicate success by exit status.

--schema-dir=schema-dir

Directory where the schema files are located. Defaults to ./dbschema.

--to-revision=to-revision

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.