akaunting/database/migrations/2018_04_26_000000_create_recurrings_table.php

38 lines
858 B
PHP
Raw Normal View History

2018-04-26 02:17:55 +03:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class CreateRecurringsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('recurrings', function (Blueprint $table) {
$table->increments('id');
$table->integer('company_id');
$table->morphs('recurrable');
$table->string('frequency');
$table->integer('interval')->default(1);
$table->date('started_at');
$table->integer('count')->default(1);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('recurrings');
}
}