Skip to content

Commit

Permalink
Fix schema validation on table delete action
Browse files Browse the repository at this point in the history
  • Loading branch information
misantron committed Jun 2, 2022
1 parent 8ba7fcc commit fc0af91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Schema/Table.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ final class Table
#[
Groups(['create', 'update']),
SerializedName('ProvisionedThroughput'),
NotBlank(message: 'Table provisioned throughput is required')
NotBlank(message: 'Table provisioned throughput is required', groups: ['create'])
]
private ?array $provisionedThroughput = null;

Expand Down

0 comments on commit fc0af91

Please sign in to comment.