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

40 lines
1013 B
PHP
Raw Permalink Normal View History

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