Anonymously
Hi Hungry,
How much did you pay for your VW Phaeton?
LOL :D About 8K EUR 3 years ago: with full list of options and whole service history from official VW Dealer. Actually in pretty mint condition I should say
Anonymously
Hi Hungry,
How much did you pay for your VW Phaeton?
LOL :D About 8K EUR 3 years ago: with full list of options and whole service history from official VW Dealer. Actually in pretty mint condition I should say
I don't want to make this a political, but I think I *must* say. After the Friday shitshow, and after all last month's events, I want to cite one good man that told: "a coward and hero met at the Oval office today. And a hero will then go home to Ukraine". Stay strong as you are, Ukraine and Mr. Zelensky. You are not alone!
If some of you may feel the urge to speak about it, feel free to reach out. I will listen, cause I know this is important!
Слава Україні!
Not sure if this is a tip or what, but...
✅ When creating a migration via CLI, if you don't want to press "_" after each word, just pass the name in the quotes: `php artisan make:migration "create users table"`
✅ If you want to CREATE a table, then your migration name must look like `create_users_table`;
✅ if you want to ADD COLUMNS to the existing table (or delete/change), then your migration file name must look like `add_some_columns_to_users_table` (note the `_users_table` at the end of the file).
In that case, Laravel will automatically try to resolve the table name for you, so you don't have to write `Schema::table('...')` or `Schema::create('...')` manually ever again! :)
Me too, but in some cases, the model already exists and migrations are not in place (like in the project I'm working on atm).
Well... my Windows 10 got corrupted somehow (still investigating, no clue). That's why I installed Ubuntu as a dual boot (got tired of WSL). Any experts here that know the solution to get rid of the GRUB command line appearing from time to time ("Minimal BASH-like line editing is supported.")?
My WSL just died and I just lost all uncommitted changes of my project. The whole local branch. Whole WSL. :)
vhdx is gone also :D Yeah, the branch was local only, no pushes. Even had some commits, but never pushed somehow...