diff --git a/database/migrations/2017_10_03_015503_drop_foreign_keys.php b/database/migrations/2017_10_03_015503_drop_foreign_keys.php new file mode 100644 index 000000000..37ef6ae68 --- /dev/null +++ b/database/migrations/2017_10_03_015503_drop_foreign_keys.php @@ -0,0 +1,77 @@ +dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + try { + Schema::table('users', function (Blueprint $table) { + $table->dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + try { + Schema::table('assets', function (Blueprint $table) { + $table->dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + try { + Schema::table('components', function (Blueprint $table) { + $table->dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + try { + Schema::table('consumables', function (Blueprint $table) { + $table->dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + try { + Schema::table('licenses', function (Blueprint $table) { + $table->dropForeign(['company_id']); + }); + } catch (\Exception $e) { + //echo $e; + } + + + + } + + /** + * Reverse the migrations. + * + * @return void + */ + public function down() + { + // + } +}