Last change
on this file since 0a1fb54 was cbd482b, checked in by beratkjufliju <kufliju@…>, 3 years ago |
edited filetype seeder
|
-
Property mode
set to
100644
|
File size:
500 bytes
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | namespace Database\Seeders;
|
---|
4 |
|
---|
5 | use Carbon\Carbon;
|
---|
6 | use Illuminate\Database\Seeder;
|
---|
7 |
|
---|
8 | class FileTypesTableSeeder extends Seeder
|
---|
9 | {
|
---|
10 | /**
|
---|
11 | * Run the database seeds.
|
---|
12 | *
|
---|
13 | * @return void
|
---|
14 | */
|
---|
15 | public function run()
|
---|
16 | {
|
---|
17 | \DB::table("file_types")->insert([
|
---|
18 | "id" => 1,
|
---|
19 | "mimes" => "jpg,jpeg,png,pdf,docx,xls,xlsx,txt,ppt,pptx",
|
---|
20 | "max_size" => "5000",
|
---|
21 | "user_id" => "1",
|
---|
22 | "created_at" => Carbon::now()
|
---|
23 | ]);
|
---|
24 | }
|
---|
25 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.