added api for tracking

This commit is contained in:
Frank John Begornia
2020-11-27 02:43:26 +08:00
parent 36ad67a37a
commit d2a20c4831
12 changed files with 213 additions and 8 deletions

View File

@@ -0,0 +1,32 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateApiModelsTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('api_models', function(Blueprint $table)
{
$table->increments('id');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('api_models');
}
}