Repository URL to install this package:
|
Version:
3.2.0 ▾
|
<?php
namespace Evsmash\Files\Schemas;
use Evsmash\Core\Schemas\Base;
class AttachmentsGroups extends Base {
protected $table = 'attachments_groups';
// validate
static public function validate() {
return [
'name' => 'req|max:50',
];
}
// create
public function create() {
$this->schemaCreate(function($m) {
$m->increments('id');
$m->string('name', 50);
$m->nullabletimestamps();
$m->softDeletes();
});
}
}