id(); $table->string('company_name'); $table->string('inn'); $table->string('bank_name'); $table->string('mfo'); $table->string('oked'); $table->jsonb('address'); $table->string('director_full_name'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('companies'); } };