<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;

class NiveauMutualisationSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('niveaux_mutualisations')->insert(array (
            0 => 
            array (
                'id' => 1,
                'nom' => 'Infra-régional hors GHT',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:49:46',
                'updated_at' => '2021-06-08 23:49:46',
            ),
            1 => 
            array (
                'id' => 2,
                'nom' => 'National',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:50:08',
                'updated_at' => '2021-06-08 23:50:08',
            ),
            2 => 
            array (
                'id' => 3,
                'nom' => 'Régional',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:50:27',
                'updated_at' => '2021-06-08 23:50:27',
            ),
            3 => 
            array (
                'id' => 4,
                'nom' => 'Sans objet',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:50:43',
                'updated_at' => '2021-06-08 23:50:43',
            ),
            4 => 
            array (
                'id' => 5,
                'nom' => 'Infra-régional hors GHT',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:49:46',
                'updated_at' => '2021-06-08 23:49:46',
            ),
            5 => 
            array (
                'id' => 6,
                'nom' => 'National',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:50:08',
                'updated_at' => '2021-06-08 23:50:08',
            ),
            6 => 
            array (
                'id' => 7,
                'nom' => 'Régional',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:50:27',
                'updated_at' => '2021-06-08 23:50:27',
            ),
        ));
    }
}
