You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hydra/database/seeders/UserRoleSeeder.php

34 lines
712 B

<?php
namespace Database\Seeders;
use App\Models\UserRole;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Schema;
class UserRoleSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Schema::disableForeignKeyConstraints();
DB::table('user_roles')->truncate();
Schema::enableForeignKeyConstraints();
UserRole::create([
'user_id'=>1,
'role_id'=>1
]); //admin
UserRole::create([
'user_id'=>1,
'role_id'=>5
]);//all
}
}