add safe-migrations bundle (#1506)

This commit is contained in:
Smaine Milianni
2023-05-06 12:36:47 +00:00
committed by GitHub
parent 45f40fd7a8
commit ee13e671f9
2 changed files with 21 additions and 0 deletions
@@ -0,0 +1,13 @@
# https://github.com/ismail1432/safe-migrations-bundle
safe_migrations:
# The path where the doctrine migrations are stored. (required)
migrations_path: '%kernel.project_dir%/migrations'
# List of critical tables that need a warning when they are modified. (optional)
# critical_tables: # List of critical tables
# - 'user'
# - 'product'
# - ...
# The statement that will be excluded from check. (optional)
# excluded_statements: # List of operations that not need a warning
# - 'TRUNCATE TABLE'
# - ...
+8
View File
@@ -0,0 +1,8 @@
{
"bundles": {
"Eniams\\SafeMigrationsBundle\\SafeMigrationsBundle": ["dev"]
},
"copy-from-recipe": {
"config/": "%CONFIG_DIR%/"
}
}