2022-03-05 16:02:12 +01:00
|
|
|
<?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);
|
2022-03-05 16:02:12 +01:00
|
|
|
$table->string('domain');
|
|
|
|
$table->tinyInteger('active')->default(1);
|
|
|
|
$table->string('extension');
|
|
|
|
$table->string('ns1')->nullable();
|
|
|
|
$table->string('ns2')->nullable();
|
|
|
|
$table->string('ns3')->nullable();
|
|
|
|
$table->integer('provider_id')->default(9999);
|
|
|
|
$table->date('owned_since')->nullable();
|
|
|
|
$table->timestamps();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reverse the migrations.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function down()
|
|
|
|
{
|
|
|
|
Schema::dropIfExists('domains');
|
|
|
|
}
|
|
|
|
}
|