Skip to content

Commit

Permalink
Add the Notification Seeder
Browse files Browse the repository at this point in the history
  • Loading branch information
leonjza committed Oct 30, 2015
1 parent e412f6c commit 822fbc1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions database/seeds/DatabaseSeeder.php
Original file line number Diff line number Diff line change
@@ -1,20 +1,23 @@
<?php

use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Seeder;
use Seat\Services\database\seeds\NotificationTypesSeeder;

class DatabaseSeeder extends Seeder
{

/**
* Run the database seeds.
*
* @return void
*/
public function run()
{

Model::unguard();

// $this->call(UserTableSeeder::class);
$this->call(NotificationTypesSeeder::class);

Model::reguard();
}
Expand Down

0 comments on commit 822fbc1

Please sign in to comment.