mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 15:49:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1,013 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1,013 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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) {
 | 
						|
            $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');
 | 
						|
    }
 | 
						|
}
 |