| 
									
										
										
										
											2022-03-06 02:02:12 +11: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-06 02:58:25 +11:00
										 |  |  |             $table->char('id', 8)->primary()->default(null); | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  |             $table->string('domain'); | 
					
						
							|  |  |  |             $table->tinyInteger('active')->default(1); | 
					
						
							|  |  |  |             $table->string('extension'); | 
					
						
							|  |  |  |             $table->string('ns1')->nullable(); | 
					
						
							|  |  |  |             $table->string('ns2')->nullable(); | 
					
						
							|  |  |  |             $table->string('ns3')->nullable(); | 
					
						
							| 
									
										
										
										
											2022-05-09 14:42:09 +10:00
										 |  |  |             $table->unsignedBigInteger('provider_id')->default(9999); | 
					
						
							| 
									
										
										
										
											2022-03-06 02:02:12 +11:00
										 |  |  |             $table->date('owned_since')->nullable(); | 
					
						
							|  |  |  |             $table->timestamps(); | 
					
						
							|  |  |  |         }); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Reverse the migrations. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     public function down() | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         Schema::dropIfExists('domains'); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } |