my-idlers/database/migrations/2022_02_01_031629_create_os_table.php
cp6 61c8fd4e26 Added timestamps to OS table
Added timestamps to OS table
2022-02-19 23:57:19 +11:00

34 lines
629 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateOsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('os', function (Blueprint $table) {
$table->id()->autoIncrement();
$table->string('name')->unique();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('os');
}
}