aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/system/Database/Model/Migrations.php
blob: 6a0942e49a30e8b46aa5ad4ba5eec33260e0677f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
/**
 * UserFrosting (http://www.userfrosting.com)
 *
 * @link      https://github.com/userfrosting/UserFrosting
 * @license   https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
 */
namespace UserFrosting\System\Database\Model;

use Illuminate\Database\Capsule\Manager as Capsule;
use Illuminate\Database\Eloquent\Model;

/**
 * Migration Model
 *
 * Represents the model for the `migrations` table
 *
 * @author Alex Weissman (https://alexanderweissman.com)
 * @property string sprinkle
 * @property string version
 */
class Migrations extends Model
{
    /**
     * @var string The name of the table for the current model.
     */
    protected $table = "migrations";

    /**
     * @var bool Enable timestamps for this class.
     */
    public $timestamps = true;

    /**
     * @var array List of fields that can be edited by this model
     */
    protected $fillable = [
        "sprinkle",
        "migration",
        "batch"
    ];

    /**
     * scopeForSprinkle function.
     *
     * @access protected
     * @param mixed $query
     * @param string $sprinkleName
     * @return void
     */
    protected function scopeForSprinkle($query, $sprinkleName)
    {
        return $query->where('sprinkle', $sprinkleName);
    }
}