Commit f8700ef2 by 孙龙

up

parent 7c0ef749
......@@ -15,6 +15,7 @@ class Kernel extends ConsoleKernel
protected $commands = [
Commands\Inspire::class,
\App\Console\Commands\JingDiaoUser::class,
\App\Console\Commands\JingDiaoOrderAddress::class,
];
/**
......
<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class OrderOtherAddressModel extends Model
{
protected $connection = 'order';
protected $table = 'lie_other_address';
protected $primaryKey = 'order_address_id';
protected $guarded = ['order_address_id'];
public $timestamps = false;
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment