We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c718d8a commit 8e8f05cCopy full SHA for 8e8f05c
database/migrations/create_actions_table.php.stub
@@ -20,7 +20,8 @@ class CreateActionsTable extends Migration
20
$table->string('action', 20);
21
$table->json('properties')->nullable();
22
$table->enum('status', Status::getValues())->default(Status::PENDING);
23
- $table->timestamp('act_at', $precision = 0);
+ $table->date('act_on')->nullable();
24
+ $table->time('act_at');
25
$table->timestamp('finished_at')->nullable();
26
$table->timestamps();
27
});
0 commit comments