peliprint/database/migrations/2023_04_08_160505_create_blueprint_table.php

45 lines
1.2 KiB
PHP
Raw Normal View History

<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Migrations\Migration;
class CreateBlueprintTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::dropIfExists('blueprint');
Schema::create('blueprint', function (Blueprint $table) {
$table->id();
$table->string('placeholder')->nullable(); // Used for work-in-progress options.
2023-04-09 15:15:11 -04:00
$table->string('developer')->nullable(); // Somehow I can't make it work with a boolean.
2023-04-09 15:15:11 -04:00
$table->string('developer:cmd')->nullable();
$table->string('developer:log')->nullable();
$table->string('api:endpoint')->nullable();
2023-04-11 14:47:38 -04:00
$table->string('telemetry')->nullable();
$table->string('telemetry:id')->nullable();
$table->string('notification:text')->nullable();
$table->timestamp('timestamp')->useCurrent()->onUpdate(null);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('blueprint');
}
}