Skip to content

Commit bc56171

Browse files
tinymqschmick
authored andcommitted
fix missing prefix variable (#71)
1 parent f9a9108 commit bc56171

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Providers/TotemServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function register()
5151
$this->app->register(TotemEventServiceProvider::class);
5252

5353
try {
54-
if (Schema::hasTable('tasks')) {
54+
if (Schema::hasTable(config('totem.table_prefix').'tasks')) {
5555
$this->app->register(ConsoleServiceProvider::class);
5656
}
5757
} catch (\PDOException $ex) {

0 commit comments

Comments
 (0)