-
Notifications
You must be signed in to change notification settings - Fork 7
RES-2026 Switch CircleCI to use Docker Compose #805
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 65 commits
b7a810f
fc72393
45e3b7d
650691a
d5b4cbc
62b4404
a35e09f
f3629b8
baa2b14
5818a40
e1dcf20
b3ced01
6b40f1f
a3b6462
34f58f4
5b76d7b
6df44bf
1cf62fc
3136622
0e49551
0277f5e
bcad74f
865054f
7e8e1c4
4ed2803
07b8d46
0c8d1e7
549f769
3a0eb95
84d625b
f45f2ac
bdbc4d2
63650e2
a647963
b6787e4
47841d2
6491750
8a59106
fe86bf0
c607c94
17b35d2
929bb56
a99c4ce
0eaac9c
4200338
5e12183
77b85d1
dc36058
fb87c63
2ebc05c
768af48
eac2dcc
e160612
74d3892
7cd0678
61879fc
28adb19
43f93db
3325d09
087b1ce
9d342b3
fdb5c6c
1a4b573
f58a84f
4569846
cbbc5ba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are we dropping these triggers? I want these repair status strings available in various reporting environments, so would prefer them to remain in the live DB.
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They're no longer used on the client, and single source of truth is better than triggers. But if you use them elsewhere, then ok - I've removed the migration. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| <?php | ||
|
|
||
| use Illuminate\Database\Migrations\Migration; | ||
| use Illuminate\Database\Schema\Blueprint; | ||
| use Illuminate\Support\Facades\Schema; | ||
|
|
||
| return new class extends Migration | ||
| { | ||
| /** | ||
| * Run the migrations. | ||
| * | ||
| * @return void | ||
| */ | ||
| public function up() | ||
| { | ||
| DB::unprepared('DROP TRIGGER IF EXISTS `repair_status_str_in`'); | ||
| DB::unprepared('DROP TRIGGER IF EXISTS `repair_status_str_up`'); | ||
| } | ||
|
|
||
| /** | ||
| * Reverse the migrations. | ||
| * | ||
| * @return void | ||
| */ | ||
| public function down() | ||
| { | ||
| } | ||
| }; |
Check failure
Code scanning / SonarCloud
MySQL database passwords should not be disclosed High