Skip to content

Commit d4763ce

Browse files
committed
SHARE-356 Migrations must no be in src
1 parent 6a4809f commit d4763ce

File tree

92 files changed

+23
-16
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+23
-16
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
doctrine_migrations:
22
migrations_paths:
3-
'DoctrineMigrations': '%kernel.project_dir%/src/Migrations'
4-
organize_migrations: "BY_YEAR"
3+
'DoctrineMigrations': '%kernel.project_dir%/migrations'
4+
organize_migrations: "BY_YEAR"
File renamed without changes.

src/Migrations/2015/.gitignore migrations/2015/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# But not these files...
55
!.gitignore
66
!Version*.php
7-
!Version*.php.backup
7+
!Version*.php.backup

src/Migrations/2016/.gitignore migrations/2016/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# But not these files...
55
!.gitignore
66
!Version*.php
7-
!Version*.php.backup
7+
!Version*.php.backup

src/Migrations/2017/.gitignore migrations/2017/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# But not these files...
55
!.gitignore
66
!Version*.php
7-
!Version*.php.backup
7+
!Version*.php.backup

src/Migrations/2018/.gitignore migrations/2018/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
# But not these files...
55
!.gitignore
66
!Version*.php
7-
!Version*.php.backup
7+
!Version*.php.backup

migrations/2019/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Ignore everything
2+
*
3+
4+
# But not these files...
5+
!.gitignore
6+
!Version*.php
7+
!Version*.php.backup

migrations/2020/.gitignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Ignore everything
2+
*
3+
4+
# But not these files...
5+
!.gitignore
6+
!Version*.php
7+
!Version*.php.backup

phpstan.neon

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
- src
55
- tests
66
excludes_analyse:
7-
- src/Migrations
7+
- migrations
88
inferPrivatePropertyTypeFromConstructor: true
99
reportUnmatchedIgnoredErrors: false
1010
ignoreErrors:

src/Commands/Reset/PurgeCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
8585
);
8686
$progress->advance();
8787

88-
$progress->setMessage('Dropping Migrations');
88+
$progress->setMessage('Dropping migrations');
8989
CommandHelper::executeShellCommand(
9090
['bin/console', 'catrobat:drop:migration'], [], 'Dropping the migration_versions table', $output);
9191
$progress->advance();

src/Migrations/2019/.gitignore

-7
This file was deleted.

symfony.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@
132132
},
133133
"files": [
134134
"config/packages/doctrine_migrations.yaml",
135-
"src/Migrations/.gitignore"
135+
"migrations/.gitignore"
136136
]
137137
},
138138
"doctrine/event-manager": {

0 commit comments

Comments
 (0)