mirror of
https://github.com/usetrmnl/byos_laravel.git
synced 2026-03-14 12:23:33 +00:00
This commit is contained in:
parent
a37a9cfe96
commit
b96a96155d
2 changed files with 5 additions and 5 deletions
|
|
@ -8,15 +8,15 @@ return new class extends Migration
|
|||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table("devices", function (Blueprint $table): void {
|
||||
$table->boolean("maximum_compatibility")->default(false);
|
||||
Schema::table('devices', function (Blueprint $table): void {
|
||||
$table->boolean('maximum_compatibility')->default(false);
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table("devices", function (Blueprint $table): void {
|
||||
$table->dropColumn("maximum_compatibility");
|
||||
Schema::table('devices', function (Blueprint $table): void {
|
||||
$table->dropColumn('maximum_compatibility');
|
||||
});
|
||||
}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue