Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/cholladay0816/CreatorCore
Browse files Browse the repository at this point in the history
…into develop
  • Loading branch information
cholladay0816 committed Dec 27, 2023
2 parents 42e40bb + ff0f243 commit 1f66e0b
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,19 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

return new class extends Migration
{
return new class () extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('commission_presets', function(Blueprint $table) {
Schema::table('commission_presets', function (Blueprint $table) {
$table->text('description')->change();
});

Schema::table('commissions', function(Blueprint $table) {
Schema::table('commissions', function (Blueprint $table) {
$table->text('description')->change();
$table->text('memo')->change();
});
Expand Down

0 comments on commit 1f66e0b

Please sign in to comment.