Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wavychat/neo4j_migrations
Migrate your Neo4j constraints
https://github.com/wavychat/neo4j_migrations
cli cypher-query-language database migration-tool neo4j neo4j-constraints neo4j-migrations nodejs
Last synced: about 1 month ago
JSON representation
Migrate your Neo4j constraints
- Host: GitHub
- URL: https://github.com/wavychat/neo4j_migrations
- Owner: wavychat
- Created: 2021-03-27T16:51:40.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-08-13T00:52:30.000Z (over 3 years ago)
- Last Synced: 2024-11-14T14:13:33.073Z (2 months ago)
- Topics: cli, cypher-query-language, database, migration-tool, neo4j, neo4j-constraints, neo4j-migrations, nodejs
- Language: TypeScript
- Homepage:
- Size: 135 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# neo4j_migrations
Migrate your Neo4j constraints## Configuring
To setup a custom config please create a `neo4j-mig.config.json` file.
In this file you need to specify:
- the db name (default is `neo4j`)
- the url to the database
- the db username
- the db password
- where to save your migrations (default is `./migrations`)
- node label of already runned migration in `neo4j````ts
export interface IJSONConfig {
database?: string;
url: string;
username: string;
password: string;
folder?: string;
node_label?: string;
}
```## Creating a migration
> npx neo4j_migrations create --name User
Or:
> npx neo4j_migrations create -n UserThis will create a `.cql` file under the folder you specified in `neo4j-mig.config.json`.
This file is seperated in 2 parts:
- Migrate
- UndoJust write the `cypher` code you want to execute on migration under the `# -- up --`
And the code you will execute when reverting the migration under the `# -- undo --`***Don't remove those comments***
## Running your migrations
> npx neo4j-mig run
This runs migrations that where not already executed and saves them in neo4j with the label you specified in `neo4j-mig.config.json`.
## Undo migrations
- Undo last:
> npx neo4j-mig undo-last
- Undo all:
> npx neo4j-mig undo-all