반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 개인사업자
- php
- as후기
- Laravel
- Python
- 전자소송
- Sentinel
- 보정명령
- 당사자표시정정신청서
- win32
- cartalyst
- 코로나
- 이더리움
- vue
- auth
- 인민공원
- 사업자계좌
- 코로나19
- 체당금
- Tutorial
- 소액임금체불
- reactnative
- 홈택스
- javascript
- Bootstrap
- elasticSearch
- blockchain
- Blade
- Eclipse
- Java
Archives
- Today
- Total
목록migration (1)
그냥 사는 이야기
Laravel 5.3 Blog System - Setup Database
Setup database Auth 추가 php artisan make:auth database/migrations/CreateUsersTable $table->enum('role',['admin','author','subscriber'])->default('author'); php artisan migrate database seed 추가 database/seeds/DatabaseSeeder use App\User; class DatabaseSeeder extends Seeder { public function run() { $this->call(UsersTableSeeder::class); } } class UsersTableSeeder extends Seeder { public function ru..
Development/Web
2020. 1. 22. 10:49