We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c924c commit 7bd1501Copy full SHA for 7bd1501
config/access.php
@@ -70,6 +70,11 @@
70
*/
71
'history_types_table' => 'history_types',
72
73
+ /*
74
+ * History table used to store History
75
+ */
76
+ 'history_table' => 'history',
77
+
78
/*
79
* Notifications table used to store user notification
80
database/seeds/HistoryTypeTableSeeder.php
@@ -22,6 +22,7 @@ public function run()
22
{
23
$this->disableForeignKeys();
24
$this->truncate(config('access.history_types_table'));
25
+ $this->truncate(config('access.history_table'));
26
27
$types = [
28
[
0 commit comments