20 lines
335 B
PHP
20 lines
335 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
/* FFlag bucket */
|
|
class Fbucket extends Model
|
|
{
|
|
/**
|
|
* The database connection that should be used by the migration.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $connection = 'mysql-fflag';
|
|
|
|
use HasFactory;
|
|
}
|