WildsideUK/Laravel-Userstamps

userstamps() in migrations

Closed this issue · 2 comments

Adding a userstamps() method to be used in migrations could be useful.
For example:

...
$table->timestamps();
$table->userstamps();
$table->softDeletes();

Thank you!

Have a look at #4 (comment)

This might be introduced in the future, but earlier Laravel 5.x versions don't support Blueprint Macros.

You can create the Macro yourself with the example linked above.