Seditio Source
Root |
./othercms/croogo-4.0.7/vendor/croogo/croogo/Taxonomy/config/Seeds/TaxonomiesSeed.php
<?php

use Phinx\Seed\AbstractSeed;

class
TaxonomiesSeed extends AbstractSeed
{

    public
$table = 'taxonomies';

    public
$records = [
        [
           
'id' => '1',
           
'parent_id' => null,
           
'term_id' => '1',
           
'vocabulary_id' => '1',
           
'lft' => '1',
           
'rght' => '2'
       
],
        [
           
'id' => '2',
           
'parent_id' => null,
           
'term_id' => '2',
           
'vocabulary_id' => '1',
           
'lft' => '3',
           
'rght' => '4'
       
],
        [
           
'id' => '3',
           
'parent_id' => null,
           
'term_id' => '3',
           
'vocabulary_id' => '2',
           
'lft' => '1',
           
'rght' => '2'
       
],
    ];

    public function
getDependencies()
    {
        return [
           
'TermsSeed',
        ];
    }

    public function
run()
    {
       
$Table = $this->table('taxonomies');
       
$Table->insert($this->records)->save();
    }
}