Skip to content

Commit

Permalink
Add migrations config
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Nov 4, 2023
1 parent 8138028 commit 2ee4dec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/Migrations/20231104184636_InitSandbox.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public function up(): void {
])
->addColumn('image', 'binary', [
'default' => null,
'limit' => null,
'limit' => 255,
'null' => true,
])
->addColumn('result', 'string', [
Expand Down
5 changes: 5 additions & 0 deletions config/app_custom.php
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,11 @@
},
],

'Migrations' => [
'unsigned_primary_keys' => true,
'column_null_default' => true,
],

'Feedback' => [
'stores' => [
],
Expand Down

0 comments on commit 2ee4dec

Please sign in to comment.