소스 검색

latest

master
Siti Rahayu 4 년 전
부모
커밋
34ffc59bb7
5개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 1
    1
      app/Model/Module/Attachment.php
  2. 1
    1
      app/Model/Module/Compound.php
  3. 1
    1
      app/Model/Module/ConfidentialFile.php
  4. 1
    1
      app/Model/Module/History.php
  5. 1
    1
      app/Model/Module/SubHistory.php

+ 1
- 1
app/Model/Module/Attachment.php 파일 보기

@@ -11,7 +11,7 @@ class Attachment extends Eloquent
use SoftDeletes;

protected $connection = 'mongodb';
protected $collection = 'attachment_test';
protected $collection = 'attachment';

protected $guarded = ['_id'];


+ 1
- 1
app/Model/Module/Compound.php 파일 보기

@@ -11,7 +11,7 @@ class Compound extends Eloquent
use SoftDeletes;

protected $connection = 'mongodb';
protected $collection = 'compound_test';
protected $collection = 'compound';

protected $guarded = ['_id'];


+ 1
- 1
app/Model/Module/ConfidentialFile.php 파일 보기

@@ -8,7 +8,7 @@ class ConfidentialFile extends Eloquent
{
//
protected $connection = 'mongodb';
protected $collection = 'confidential_file_test';
protected $collection = 'confidential_file';

protected $guarded = ['_id'];


+ 1
- 1
app/Model/Module/History.php 파일 보기

@@ -8,7 +8,7 @@ class History extends Eloquent
{
//
protected $connection = 'mongodb';
protected $collection = 'history_test';
protected $collection = 'history';

protected $guarded = ['_id'];


+ 1
- 1
app/Model/Module/SubHistory.php 파일 보기

@@ -8,7 +8,7 @@ class SubHistory extends Eloquent
{
//
protected $connection = 'mongodb';
protected $collection = 'sub_history_test';
protected $collection = 'sub_history';

protected $guarded = ['_id'];


Loading…
취소
저장