set_migrations_directory
Configure the directory for creating and reading migration files, with optional custom path; defaults to "pb_migrations" in the current working directory.
Instructions
Set the directory where migration files will be created and read from.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customPath | No | Custom path for migrations. If not provided, defaults to "pb_migrations" in the current working directory. |
Input Schema (JSON Schema)
{
"properties": {
"customPath": {
"description": "Custom path for migrations. If not provided, defaults to \"pb_migrations\" in the current working directory.",
"type": "string"
}
},
"type": "object"
}