Add next_reminder_at column on invoices table
This commit is contained in:
parent
7e3ee38dcd
commit
da81cc455e
|
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class AddNextReminderAtOnInvoicesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Add next_reminder_at column on invoices table.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::table('invoices', function (Blueprint $table) {
|
||||
$table->timestamp('next_reminder_at')->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::table('invoices', function (Blueprint $table) {
|
||||
$table->dropColumn('next_reminder_at');
|
||||
});
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue