Releases: devsrv/laravel-scheduled-model-action
Releases · devsrv/laravel-scheduled-model-action
v3.1.0
v3.0.0
v2.1.0
v2.0.1
v2.0.0
BREAKING CHANGES INTRODUCTED
-
HasActionstrait renammed toHasScheduledAction -
no more recurring support
-
column names changed
act_on->act_dateact_at->act_timerecurringremoved
-
config file renammed to
scheduled-action.php -
action status type getter local scopes to attribute accessor - refer c26444a
-
fluent create method
forModelrenammed tofor- refer -
fluent create method signatures changed - for chaining needs to start with
ModelAction::for($model)->... -
add this migration to your app if you are upgrading from v1 to v2
Schema::table('model_actions', function (Blueprint $table) {
$table->renameColumn('act_on', 'act_date');
$table->renameColumn('act_at', 'act_time');
$table->dropColumn('recurring');
});