Paul

Results 30 comments of Paul

you can also add to your user model: ``` public function qualifyColumn($column) { if (Str::contains($column, '.')) { return $column; } return $column; //return $this->getTable().'.'.$column; } ``` as a temporary fix....

Ideally, this would be included in the laravel-mongodb base model for future safety as I'm guessing prefixing the table name via dot notation could cause all kinds of issues when...

digging further into this, it might be something to do with the network subnets being allocated? with version 1 syntax the subnet allocated to the web container is in the...

And finally to answer my own question if you use: ```network_mode: bridge``` within each of the **services** it puts it into the 172.17.0.0/24

Thanks for the response... Am not sure if doing it that way will set the "xsi:type" to "TelephoneNumberAvailabilityRequest" but next time I am looking at that particular code I will...

I also tried this, but am not convinced is working: ```php host('staging') ->setHostname('test.co.uk') ->setRemoteUser('admin') ->setIdentityFile('~/.ssh/id_rsa') ->set('stage', function () { return (input()->hasOption('stage')) ? input()->getOption('stage') : 'staging'; }) ->set('branch', function () {...

and i also tried adding this to near the top of deploy.php. but still doesnt work :-( ``` set('branch', function () { $branch = null; if (input()->hasOption('branch') && !empty(input()->getOption('branch'))) {...

Hi @antonmedv , Sorry if i was not clear in my first post. We have 2 deployment environments, 'production' and 'staging' and use gitflow as our VCS workflow meaning we...

Has anyone else experienced this or found a workaround at all? - thanks.

That's no problem, thanks for your help. Actually as an FYI, I did some more googling and discovered that by changing the session store in my sailsjs api (from internal...