Mercurial > packages > magicforger
diff src/Generator/Requests/RequestGenerator.php @ 40:2cf26b593f4a ls_dev_2025_09 tip
better support for different column types
| author | Luka Sitas <sitas.luka.97@gmail.com> |
|---|---|
| date | Thu, 16 Oct 2025 10:54:04 -0400 |
| parents | 21439512ba69 |
| children |
line wrap: on
line diff
--- a/src/Generator/Requests/RequestGenerator.php Thu Sep 25 23:16:13 2025 -0400 +++ b/src/Generator/Requests/RequestGenerator.php Thu Oct 16 10:54:04 2025 -0400 @@ -90,16 +90,16 @@ protected function createFilterRequest() { - $this->call('mf:filter_request', ['table' => $this->getTableInput()]); + $this->call('mf:filter_request', ['table' => $this->getTableInput(), '--fresh' => $this->option('fresh')]); } protected function createStoreRequest() { - $this->call('mf:store_request', ['table' => $this->getTableInput()]); + $this->call('mf:store_request', ['table' => $this->getTableInput(), '--fresh' => $this->option('fresh')]); } protected function createUpdateRequest() { - $this->call('mf:update_request', ['table' => $this->getTableInput()]); + $this->call('mf:update_request', ['table' => $this->getTableInput(), '--fresh' => $this->option('fresh')]); } }
