Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Commit 2c6dfc7

Browse files
authored
Update 2019_06_08_114626_create_settings_table.php
1 parent 0d90108 commit 2c6dfc7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

database/2019_06_08_114626_create_settings_table.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class CreateSettingsTable extends Migration
1414
*/
1515
public function up()
1616
{
17-
Schema::create(config('settings.table'), function (Blueprint $table) {
17+
Schema::create(config('bavix-settings.table'), function (Blueprint $table) {
1818
$table->bigIncrements('id');
1919
$table->morphs('model');
2020
$table->string('key', 50);
@@ -31,7 +31,7 @@ public function up()
3131
*/
3232
public function down()
3333
{
34-
Schema::dropIfExists(config('settings.table'));
34+
Schema::dropIfExists(config('bavix-settings.table'));
3535
}
3636

3737
}

0 commit comments

Comments
 (0)