@@ -11,7 +11,7 @@ class Attachment extends Eloquent | |||
use SoftDeletes; | |||
protected $connection = 'mongodb'; | |||
protected $collection = 'attachment_test'; | |||
protected $collection = 'attachment'; | |||
protected $guarded = ['_id']; | |||
@@ -11,7 +11,7 @@ class Compound extends Eloquent | |||
use SoftDeletes; | |||
protected $connection = 'mongodb'; | |||
protected $collection = 'compound_test'; | |||
protected $collection = 'compound'; | |||
protected $guarded = ['_id']; | |||
@@ -8,7 +8,7 @@ class ConfidentialFile extends Eloquent | |||
{ | |||
// | |||
protected $connection = 'mongodb'; | |||
protected $collection = 'confidential_file_test'; | |||
protected $collection = 'confidential_file'; | |||
protected $guarded = ['_id']; | |||
@@ -8,7 +8,7 @@ class History extends Eloquent | |||
{ | |||
// | |||
protected $connection = 'mongodb'; | |||
protected $collection = 'history_test'; | |||
protected $collection = 'history'; | |||
protected $guarded = ['_id']; | |||
@@ -8,7 +8,7 @@ class SubHistory extends Eloquent | |||
{ | |||
// | |||
protected $connection = 'mongodb'; | |||
protected $collection = 'sub_history_test'; | |||
protected $collection = 'sub_history'; | |||
protected $guarded = ['_id']; | |||