<?php

namespace Database\Seeders;

use Illuminate\Database\Seeder;

class OperateurMutualisationSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('operateurs_mutualisations')->insert(array (
            0 => 
            array (
                'id' => 1,
                'nom' => 'Sans objet',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:51:57',
                'updated_at' => '2021-06-08 23:51:57',
            ),
            1 => 
            array (
                'id' => 2,
                'nom' => 'Resah',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:52:12',
                'updated_at' => '2021-06-08 23:52:12',
            ),
            2 => 
            array (
                'id' => 3,
                'nom' => 'UniHa',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-08 23:52:29',
                'updated_at' => '2021-06-08 23:52:29',
            ),
            3 => 
            array (
                'id' => 4,
                'nom' => 'UGAP',
                'description' => NULL,
                'structure_id' => 2,
                'created_at' => '2021-06-09 18:49:39',
                'updated_at' => '2021-06-09 18:49:39',
            ),
            4 => 
            array (
                'id' => 5,
                'nom' => 'Sans objet',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:51:57',
                'updated_at' => '2021-06-08 23:51:57',
            ),
            5 => 
            array (
                'id' => 6,
                'nom' => 'Resah',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:52:12',
                'updated_at' => '2021-06-08 23:52:12',
            ),
            6 => 
            array (
                'id' => 7,
                'nom' => 'UniHa',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-08 23:52:29',
                'updated_at' => '2021-06-08 23:52:29',
            ),
            7 => 
            array (
                'id' => 8,
                'nom' => 'UGAP',
                'description' => NULL,
                'structure_id' => 3,
                'created_at' => '2021-06-09 18:49:39',
                'updated_at' => '2021-06-09 18:49:39',
            ),
        ));
    }
}
