Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
madis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Soluris
madis
Commits
99ac4696
Commit
99ac4696
authored
1 month ago
by
Jonathan Foucher
Browse files
Options
Downloads
Patches
Plain Diff
cs fix
parent
c16bc61b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#91455
failed
1 month ago
Stage: cache
Stage: tests
Stage: quality-assurance
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
migrations/Version20250218100454.php
+6
-6
6 additions, 6 deletions
migrations/Version20250218100454.php
with
6 additions
and
6 deletions
migrations/Version20250218100454.php
+
6
−
6
View file @
99ac4696
...
@@ -12,25 +12,25 @@ use Doctrine\Migrations\AbstractMigration;
...
@@ -12,25 +12,25 @@ use Doctrine\Migrations\AbstractMigration;
*/
*/
final
class
Version20250218100454
extends
AbstractMigration
final
class
Version20250218100454
extends
AbstractMigration
{
{
public
function
getDescription
()
:
string
public
function
getDescription
():
string
{
{
return
''
;
return
''
;
}
}
public
function
up
(
Schema
$schema
)
:
void
public
function
up
(
Schema
$schema
):
void
{
{
// this up() migration is auto-generated, please modify it to your needs
// this up() migration is auto-generated, please modify it to your needs
$this
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
abortIf
(
'mysql'
!==
$this
->
connection
->
getDatabasePlatform
()
->
getName
(),
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73A76ED395'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73A76ED395'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73EF1A9D84'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73EF1A9D84'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73A76ED395 FOREIGN KEY (user_id) REFERENCES user_user (id) ON DELETE CASCADE'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73A76ED395 FOREIGN KEY (user_id) REFERENCES user_user (id) ON DELETE CASCADE'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73EF1A9D84 FOREIGN KEY (notification_id) REFERENCES notification (id) ON DELETE CASCADE'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73EF1A9D84 FOREIGN KEY (notification_id) REFERENCES notification (id) ON DELETE CASCADE'
);
}
}
public
function
down
(
Schema
$schema
)
:
void
public
function
down
(
Schema
$schema
):
void
{
{
// this down() migration is auto-generated, please modify it to your needs
// this down() migration is auto-generated, please modify it to your needs
$this
->
abortIf
(
$this
->
connection
->
getDatabasePlatform
()
->
getName
()
!==
'mysql'
,
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
abortIf
(
'mysql'
!==
$this
->
connection
->
getDatabasePlatform
()
->
getName
(),
'Migration can only be executed safely on \'mysql\'.'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73EF1A9D84'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73EF1A9D84'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73A76ED395'
);
$this
->
addSql
(
'ALTER TABLE notification_user DROP FOREIGN KEY FK_35AF9D73A76ED395'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73EF1A9D84 FOREIGN KEY (notification_id) REFERENCES notification (id)'
);
$this
->
addSql
(
'ALTER TABLE notification_user ADD CONSTRAINT FK_35AF9D73EF1A9D84 FOREIGN KEY (notification_id) REFERENCES notification (id)'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment