my-idlers/database/migrations/2022_02_11_022150_create_miscs_table.php

35 lines
754 B
PHP
Raw Normal View History

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMiscsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('misc_services', function (Blueprint $table) {
2022-03-05 16:58:25 +01:00
$table->char('id', 8)->primary();
$table->string('name');
$table->tinyInteger('active')->default(1);
2022-03-05 16:58:25 +01:00
$table->date('owned_since')->nullable();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('misc_services');
}
2022-03-05 16:58:25 +01:00
}