<?php

namespace Database\Seeders;

use App\Models\Action;
use Illuminate\Database\Seeder;

class ActionSeeder extends Seeder
{
    /**
     * Run the database seeds.
     *
     * @return void
     */
    public function run()
    {
        \DB::table('actions')->insert(array (
            0 => 
            array (
                'id' => 1,
                'nom' => 'Innovation',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 1,
                'created_at' => '2021-06-08 23:56:15',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            1 => 
            array (
                'id' => 2,
                'nom' => 'Economie circulaire',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 1,
                'created_at' => '2021-06-08 23:56:20',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            2 => 
            array (
                'id' => 3,
                'nom' => 'TPE/PME',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 1,
                'created_at' => '2021-06-08 23:56:32',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            3 => 
            array (
                'id' => 4,
                'nom' => 'Insertion sociale',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 2,
                'created_at' => '2021-06-08 23:56:43',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            4 => 
            array (
                'id' => 5,
                'nom' => 'Secteur protégé',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 2,
                'created_at' => '2021-06-08 23:56:48',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            5 => 
            array (
                'id' => 6,
                'nom' => 'Insertion par l\'AE',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 2,
                'created_at' => '2021-06-08 23:56:54',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            6 => 
            array (
                'id' => 7,
                'nom' => 'Emissions CO2',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 3,
                'created_at' => '2021-06-08 23:57:05',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            7 => 
            array (
                'id' => 8,
                'nom' => 'Gestion des déchets',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 3,
                'created_at' => '2021-06-08 23:57:12',
                'updated_at' => '2021-06-08 23:58:07',
            ),
            8 => 
            array (
                'id' => 9,
                'nom' => 'Conso énergétiques',
                'description' => NULL,
                'visible' => 1,
                'thematique_id' => 3,
                'created_at' => '2021-06-08 23:57:42',
                'updated_at' => '2021-06-08 23:58:07',
            ),
        ));
    }
}
