Repository URL to install this package:
|
Version:
3.2.0 ▾
|
<?php
namespace Evsmash\Items\Schemas;
use Evsmash\Core\Schemas\Base;
class ItemsToCategories extends Base {
protected $table = 'items_to_categories';
// create
public function create() {
$this->schemaCreate(function($m) {
$m->integer('item_id');
$m->integer('category_id');
});
}
}