mega-commit: migrations, controllers, models, etc.
This commit is contained in:
		
							parent
							
								
									9732135e90
								
							
						
					
					
						commit
						2c6745e812
					
				
					 70 changed files with 2124 additions and 400 deletions
				
			
		|  | @ -1,36 +0,0 @@ | |||
| <?php | ||||
| 
 | ||||
| use Illuminate\Database\Migrations\Migration; | ||||
| use Illuminate\Database\Schema\Blueprint; | ||||
| use Illuminate\Support\Facades\Schema; | ||||
| 
 | ||||
| return new class extends Migration { | ||||
|     /** | ||||
|      * Run the migrations. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function up() | ||||
|     { | ||||
|         Schema::create('addresses', function (Blueprint $table) { | ||||
|             $table->id('address_id'); | ||||
|             $table->timestamps(); | ||||
|             $table->addColumn('string', 'address_street', ['length' => 255]); | ||||
|             $table->addColumn('string', 'address_city', ['length' => 255]); | ||||
|             $table->addColumn('string', 'address_state', ['length' => 255]); | ||||
|             $table->addColumn('string', 'address_zip', ['length' => 255]); | ||||
|             $table->addColumn('string', 'address_country', ['length' => 255]); | ||||
|             $table->foreignId('user_id')->constrained('users', 'user_id'); | ||||
|         }); | ||||
|     } | ||||
| 
 | ||||
|     /** | ||||
|      * Reverse the migrations. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function down() | ||||
|     { | ||||
|         Schema::dropIfExists('addresses'); | ||||
|     } | ||||
| }; | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue