feat: [database] codebridge DB connection 적용 (merge 후 재적용)
- 78개 MNG 전용 모델에 $connection = 'codebridge' 재적용 - config/database.php codebridge connection 포함
This commit is contained in:
@@ -24,7 +24,6 @@
|
||||
*/
|
||||
class AdminApiFlow extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_flows';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -37,7 +37,6 @@ class AdminApiFlowRun extends Model
|
||||
|
||||
public const STATUS_PARTIAL = 'PARTIAL';
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_flow_runs';
|
||||
|
||||
public $timestamps = false; // created_at만 사용
|
||||
|
||||
@@ -27,7 +27,6 @@ class AdminPmDailyLog extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_pm_daily_logs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
*/
|
||||
class AdminPmDailyLogEntry extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_pm_daily_log_entries';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -29,7 +29,6 @@ class AdminPmIssue extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_pm_issues';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -28,7 +28,6 @@ class AdminPmProject extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_pm_projects';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -31,7 +31,6 @@ class AdminPmTask extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_pm_tasks';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -11,7 +11,6 @@ class AdminRoadmapMilestone extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_roadmap_milestones';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@ class AdminRoadmapPlan extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_roadmap_plans';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -26,7 +26,6 @@
|
||||
*/
|
||||
class ApiRequestLog extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'api_request_logs';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
@@ -11,7 +11,6 @@ class AuditLog extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'audit_logs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
class TriggerAuditLog extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'trigger_audit_logs';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
*/
|
||||
class BankSyncStatus extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_bank_sync_status';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -13,7 +13,6 @@
|
||||
*/
|
||||
class BankTransaction extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_bank_transactions';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
*/
|
||||
class BankTransactionOverride extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_bank_transaction_overrides';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
*/
|
||||
class BankTransactionSplit extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_bank_transaction_splits';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
*/
|
||||
class BarobillBillingRecord extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_billing_records';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -11,7 +11,6 @@ class BarobillMember extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_members';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
*/
|
||||
class BarobillMonthlySummary extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_monthly_summaries';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
*/
|
||||
class BarobillPricingPolicy extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_pricing_policies';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@
|
||||
*/
|
||||
class CardTransactionAmountLog extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_card_transaction_amount_logs';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class CardTransactionHide extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'barobill_card_transaction_hides';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -41,7 +41,6 @@ class HometaxInvoice extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'hometax_invoices';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@
|
||||
*/
|
||||
class HometaxInvoiceJournal extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'hometax_invoice_journals';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
*/
|
||||
class BizCert extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'biz_cert';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -21,7 +21,6 @@
|
||||
*/
|
||||
class ApiBookmark extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_bookmarks';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -22,7 +22,6 @@
|
||||
*/
|
||||
class ApiDeprecation extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_deprecations';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
*/
|
||||
class ApiEnvironment extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_environments';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -29,7 +29,6 @@ class ApiHistory extends Model
|
||||
*/
|
||||
public const UPDATED_AT = null;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_histories';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -28,7 +28,6 @@ class ApiRequestLog extends Model
|
||||
{
|
||||
public $timestamps = false;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'api_request_logs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -25,7 +25,6 @@
|
||||
*/
|
||||
class ApiTemplate extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_api_templates';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class EsignAuditLog extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_audit_logs';
|
||||
|
||||
public $timestamps = false;
|
||||
|
||||
@@ -10,7 +10,6 @@ class EsignContract extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_contracts';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
|
||||
class EsignFieldTemplate extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_field_templates';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class EsignFieldTemplateItem extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_field_template_items';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class EsignSignField extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_sign_fields';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -8,7 +8,6 @@
|
||||
|
||||
class EsignSigner extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'esign_signers';
|
||||
|
||||
// 역할 상수
|
||||
|
||||
@@ -14,7 +14,6 @@ class Equipment extends Model
|
||||
{
|
||||
use BelongsToTenant, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'equipments';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class EquipmentProcess extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'equipment_process';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class CondolenceExpense extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'condolence_expenses';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class ConsultingFee extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'consulting_fees';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class CorporateCard extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'corporate_cards';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
class CorporateCardPrepayment extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'corporate_card_prepayments';
|
||||
|
||||
protected $fillable = ['tenant_id', 'year_month', 'amount', 'memo', 'items'];
|
||||
|
||||
@@ -9,7 +9,6 @@ class CustomerSettlement extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'customer_settlements';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
class DailyFundMemo extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'daily_fund_memos';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class DailyFundTransaction extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'daily_fund_transactions';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class Income extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'incomes';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class SalesRecord extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_records';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -9,7 +9,6 @@ class VatRecord extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'vat_records';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@ class BusinessIncomePayment extends Model
|
||||
{
|
||||
use ModelTrait, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'business_income_payments';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class IncomeTaxBracket extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'income_tax_brackets';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@ class InterviewKnowledge extends Model
|
||||
{
|
||||
use BelongsToTenant, ModelTrait, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'interview_knowledge';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -13,7 +13,6 @@ class ConstructionSitePhoto extends Model
|
||||
{
|
||||
use BelongsToTenant, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'construction_site_photos';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class ConstructionSitePhotoRow extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'construction_site_photo_rows';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -13,7 +13,6 @@ class MeetingMinute extends Model
|
||||
{
|
||||
use BelongsToTenant, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'meeting_minutes';
|
||||
|
||||
const STATUS_DRAFT = 'DRAFT';
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class MeetingMinuteSegment extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'meeting_minute_segments';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -16,7 +16,6 @@ class MeetingLog extends Model
|
||||
{
|
||||
use BelongsToTenant, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'admin_meeting_logs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@ class CmSong extends Model
|
||||
{
|
||||
use BelongsToTenant, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'cm_songs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -45,7 +45,6 @@ class SalesCommission extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_commissions';
|
||||
|
||||
/**
|
||||
|
||||
@@ -20,7 +20,6 @@
|
||||
*/
|
||||
class SalesCommissionDetail extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_commission_details';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -31,7 +31,6 @@ class SalesConsultation extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_consultations';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
*/
|
||||
class SalesContractProduct extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_contract_products';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -11,7 +11,6 @@ class SalesManager extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_managers';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -12,7 +12,6 @@ class SalesManagerDocument extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_manager_documents';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -31,7 +31,6 @@ class SalesPartner extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_partners';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -28,7 +28,6 @@ class SalesProduct extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_products';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -21,7 +21,6 @@ class SalesProductCategory extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_product_categories';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -11,7 +11,6 @@ class SalesProspect extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_prospects';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@ class SalesProspectConsultation extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_prospect_consultations';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@ class SalesProspectProduct extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_prospect_products';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class SalesProspectScenario extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_prospect_scenarios';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -10,7 +10,6 @@ class SalesRecord extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_records';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -23,7 +23,6 @@
|
||||
*/
|
||||
class SalesScenarioChecklist extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_scenario_checklists';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -37,7 +37,6 @@ class SalesTenantManagement extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'sales_tenant_managements';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -16,7 +16,6 @@ class TenantProspect extends Model
|
||||
{
|
||||
use SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'tenant_prospects';
|
||||
|
||||
public const STATUS_ACTIVE = 'active'; // 영업권 유효
|
||||
|
||||
@@ -26,7 +26,6 @@ class AiConfig extends Model
|
||||
{
|
||||
use HasFactory, SoftDeletes;
|
||||
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'ai_configs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -7,7 +7,6 @@
|
||||
|
||||
class AiPricingConfig extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'ai_pricing_configs';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
|
||||
class AiTokenUsage extends Model
|
||||
{
|
||||
protected $connection = 'codebridge';
|
||||
protected $table = 'ai_token_usages';
|
||||
|
||||
protected $fillable = [
|
||||
|
||||
@@ -63,26 +63,6 @@
|
||||
]) : [],
|
||||
],
|
||||
|
||||
// 코드브릿지엑스 내부 관리 DB (codebridge)
|
||||
'codebridge' => [
|
||||
'driver' => 'mysql',
|
||||
'host' => env('CODEBRIDGE_DB_HOST', env('DB_HOST', '127.0.0.1')),
|
||||
'port' => env('CODEBRIDGE_DB_PORT', env('DB_PORT', '3306')),
|
||||
'database' => env('CODEBRIDGE_DB_DATABASE', 'codebridge'),
|
||||
'username' => env('CODEBRIDGE_DB_USERNAME', env('DB_USERNAME')),
|
||||
'password' => env('CODEBRIDGE_DB_PASSWORD', env('DB_PASSWORD')),
|
||||
'unix_socket' => '',
|
||||
'charset' => 'utf8mb4',
|
||||
'collation' => 'utf8mb4_unicode_ci',
|
||||
'prefix' => '',
|
||||
'prefix_indexes' => true,
|
||||
'strict' => true,
|
||||
'engine' => null,
|
||||
'options' => extension_loaded('pdo_mysql') ? array_filter([
|
||||
PDO::MYSQL_ATTR_SSL_CA => env('MYSQL_ATTR_SSL_CA'),
|
||||
]) : [],
|
||||
],
|
||||
|
||||
// 통계/알림 DB (sam_stat)
|
||||
'sam_stat' => [
|
||||
'driver' => 'mysql',
|
||||
|
||||
Reference in New Issue
Block a user