peliprint/database/migrations/2023_03_06_180942_create_key.php
2023-03-06 19:10:47 +01:00

33 lines
No EOL
697 B
PHP

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Migrations\Migration;
class CreateKey extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('bpkey', function (Blueprint $table) {
$table->id();
$table->string('k')->nullable();
$table->boolean('v')->nullable();
$table->timestamp('timestamp')->useCurrent()->onUpdate(null);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('bpkey');
}
}