Record paddock state changes
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreatePaddockStateChangesTable extends Migration
|
||||
{
|
||||
/**
|
||||
* Run the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function up()
|
||||
{
|
||||
Schema::create('paddock_state_changes', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->integer('paddock_id')->unsigned();
|
||||
$table->foreign('paddock_id')->references('id')->on('paddocks');
|
||||
$table->string('state');
|
||||
$table->timestamps();
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Reverse the migrations.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('paddock_state_changes');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user