Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 703 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 703 Bytes

Highcore Doctrine Migrations Bundle

Installation

composer require highcore/doctrine-migration-bundle

Usage

To create SQL files with migration, use:

./bin/console doctrine:migrations:generate 

To create a diff SQL migration with your actual database:

./bin/console doctrine:migrations:diff

Example

$ tree
.
├── sql
│   ├── Version20220708173033_up.sql
│   ├── Version20220708173033_down.sql
│   ├── Version20220710115549_up.sql
│   ├── Version20220710115549_down.sql
├── Version20220708173033.php
├── Version20220710115549.php

You can delete _down.sql migration if you don't need it.