Logo
Explore Help
Register Sign In
starred/BookStack
1
0
Fork 0
You've already forked BookStack
mirror of https://github.com/BookStackApp/BookStack.git synced 2026-02-24 11:19:38 +03:00
Code Issues 784 Packages Projects Releases 14 Wiki Activity
Files
release
BookStack/database/seeders/DatabaseSeeder.php

24 lines
372 B
PHP
Raw Permalink Normal View History

Initial commit
2015-07-12 20:01:42 +01:00
<?php
Laravel 8 shift squash & merge (#3029) * Temporarily moved back config path * Apply Laravel coding style * Shift exception handler * Shift HTTP kernel and middleware * Shift service providers * Convert options array to fluent methods * Shift to class based routes * Shift console routes * Ignore temporary framework files * Shift to class based factories * Namespace seeders * Shift PSR-4 autoloading * Shift config files * Default config files * Shift Laravel dependencies * Shift return type of base TestCase methods * Shift cleanup * Applied stylci style changes * Reverted config files location * Applied manual changes to Laravel 8 shift Co-authored-by: Shift <shift@laravelshift.com>
2021-10-30 21:29:59 +01:00
namespace Database\Seeders;
Initial commit
2015-07-12 20:01:42 +01:00
use Illuminate\Database\Eloquent\Model;
Apply fixes from StyleCI
2021-06-26 15:23:15 +00:00
use Illuminate\Database\Seeder;
Initial commit
2015-07-12 20:01:42 +01:00
class DatabaseSeeder extends Seeder
{
/**
Upgraded to Laravel 5.6
2019-09-06 22:14:39 +01:00
* Seed the application's database.
Initial commit
2015-07-12 20:01:42 +01:00
*
* @return void
*/
public function run()
{
Model::unguard();
// $this->call(UserTableSeeder::class);
Model::reguard();
}
}
Reference in New Issue Copy Permalink
Powered by Gitea Version: 1.25.4 Page: 59ms Template: 1ms
English
Bahasa Indonesia Deutsch English Español Français Gaeilge Italiano Latviešu Magyar nyelv Nederlands Polski Português de Portugal Português do Brasil Suomi Svenska Türkçe Čeština Ελληνικά Български Русский Українська فارسی മലയാളം 日本語 简体中文 繁體中文(台灣) 繁體中文(香港) 한국어
Licenses API