Tim Potze

Results 36 comments of Tim Potze

Simply marking user_id in create_posts_table as unsigned does the trick as well without having to manually modify the migration `php artisan make:migration:schema create_posts_table --schema="user_id:integer:unsigned:foreign, title:string, body:text"` It might be easier...

Can confirm, doesn't work for me either

Possibly related: https://github.com/dotnet/orleans/issues/8262

you can run plugins like normally in the samp-server. If you need to call functions(natives) from these plugins, you need a wrapper for them. There are already a few wrappers...

Since there is no documentation that I know of for the new components SDK of open.mp and there is no sample for consuming there SDK I've had a hard time...

I'm expperimenting with some setups of interop

I'm working on a proof-of-concept project here: https://github.com/SampSharp/openmp-sampsharp-x64-poc

Ah yes, I was building with debug runtime. I build it with release runtime now and it's fine. Turns out I'm just an idiot. Thanks for you help :)

I had closed it. @Hual should this remain open?

Set the mounts in the ContainerSpec when you create the container: ``` Mounts = new List { new Mount { Source =storagePath, Target = "/data", Type = "bind" } },...