Skip to content

Commit 35a90e9

Browse files
author
Ni Nelli
committed
refactor: fix migration views
refs: #55
1 parent 366ad20 commit 35a90e9

12 files changed

+12
-12
lines changed

resources/views/add_default_user.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ public function down(): void
2525
->delete();
2626
}
2727
}
28-
}
28+
};

resources/views/admins_add_additional_admin.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ public function down(): void
2323
->delete();
2424
}
2525
}
26-
}
26+
};

resources/views/admins_create_table.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ public function down()
2020
{
2121
Schema::dropIfExists('admins');
2222
}
23-
}
23+
};

resources/views/users_add_clerk_id_field.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ public function down()
2020
$table->dropColumn('clerk_id');
2121
});
2222
}
23-
}
23+
};

tests/fixtures/InitCommandTest/admins_add_default_admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ public function down(): void
2525
->delete();
2626
}
2727
}
28-
}
28+
};

tests/fixtures/InitCommandTest/admins_add_nova_admin_migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ public function down(): void
2525
->delete();
2626
}
2727
}
28-
}
28+
};

tests/fixtures/InitCommandTest/admins_add_telescope_admin_migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ public function down(): void
2525
->delete();
2626
}
2727
}
28-
}
28+
};

tests/fixtures/InitCommandTest/admins_table_migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ public function down()
2222
{
2323
Schema::dropIfExists('admins');
2424
}
25-
}
25+
};

tests/fixtures/InitCommandTest/migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ public function down(): void
2727
->delete();
2828
}
2929
}
30-
}
30+
};

tests/fixtures/InitCommandTest/nova_users_table_migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ public function down(): void
2727
->delete();
2828
}
2929
}
30-
}
30+
};

0 commit comments

Comments
 (0)