learnlaravel5/.envDB_HOST=localhost DB_DATABASE=테스트 DB_USERNAME=루트 DB_PASSWORD=Laravelartisanmodel **php artisan make:모델 열**2016_04_14_095248_create_columns_ta"/> learnlaravel5/.envDB_HOST=localhost DB_DATABASE=테스트 DB_USERNAME=루트 DB_PASSWORD=Laravelartisanmodel **php artisan make:모델 열**2016_04_14_095248_create_columns_ta">
data-id="1190000004940611">
1. learnlaravel5/.env
<code>DB_HOST=localhost DB_DATABASE=test DB_USERNAME=root DB_PASSWORD=</code>
에서 데이터베이스 링크를 구성합니다. 2. Laravel에서 artisan을 사용하여 모델 및 데이터베이스 생성 파일을 생성합니다
<code> **php artisan make:model Column**</code>
<code>示例自动生成2016_04_14_095248_create_columns_table。</code>
3. 2016_04_14_095248_create_columns_table 파일을 수정하여 필수 필드를 추가합니다
<code> public function up() { Schema::create('columns', function(Blueprint $table) { $table->increments('id'); $table->string('name')->nullable(); $table->string('url')->nullable(); $table->text('intr'); $table->string('otherauthor'); $table->integer('copyinfo'); $table->timestamps(); }); }</code>
4. 데이터베이스 테이블 생성
<code>php artisan migrate</code>
위 내용은 모델 측면을 포함하여 Lavarel의 기본 사례를 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.