2017-06-11 07:27:19 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Database\Migrations\Migration;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
|
|
|
|
|
|
class CreateFaresTable extends Migration
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Run the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
Schema::create('fares', function (Blueprint $table) {
|
|
|
|
$table->increments('id');
|
2017-07-11 07:54:51 +08:00
|
|
|
$table->string('code', 50);
|
|
|
|
$table->string('name', 50);
|
2017-06-22 00:40:08 +08:00
|
|
|
$table->decimal('price', 19, 2)->default(0.0);
|
|
|
|
$table->decimal('cost', 19, 2)->default(0.0);
|
|
|
|
$table->integer('capacity')->default(0)->unsigned();
|
2017-06-11 07:27:19 +08:00
|
|
|
$table->string('notes')->nullable();
|
|
|
|
$table->boolean('active')->default(true);
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::drop('fares');
|
|
|
|
}
|
|
|
|
}
|