Skip to content

Commit

Permalink
test files for comparision for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
thonhaus committed May 4, 2023
1 parent 86f1f33 commit 2f1388c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -385,6 +385,7 @@ public function up(): void
[
'update' => 'NO_ACTION',
'delete' => 'NO_ACTION',
'constraint' => 'category_article_idx'
]
)
->update();
Expand All @@ -403,6 +404,7 @@ public function up(): void
[
'update' => 'CASCADE',
'delete' => 'CASCADE',
'constraint' => 'product_id_fk'
]
)
->update();
Expand All @@ -415,6 +417,7 @@ public function up(): void
[
'update' => 'CASCADE',
'delete' => 'CASCADE',
'constraint' => 'category_idx'
]
)
->update();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ public function up(): void
[
'update' => 'NO_ACTION',
'delete' => 'NO_ACTION',
'constraint' => 'category_article_idx'
]
)
->update();
Expand All @@ -343,6 +344,7 @@ public function up(): void
[
'update' => 'CASCADE',
'delete' => 'CASCADE',
'constraint' => 'product_id_fk'
]
)
->update();
Expand All @@ -355,6 +357,7 @@ public function up(): void
[
'update' => 'CASCADE',
'delete' => 'CASCADE',
'constraint' => 'category_idx'
]
)
->update();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ public function up(): void
[
'update' => 'NO_ACTION',
'delete' => 'NO_ACTION',
'constraint' => 'category_article_idx'
]
)
->update();
Expand Down

0 comments on commit 2f1388c

Please sign in to comment.