learnlaravel5/.envDB_HOST=localhost DB_DATABASE=test DB_USERNAME=root DB_PASSWORD=Laravelartisanmodel **php artisan make:model Column**2016_04_14_095248_create_columns_ta"/> learnlaravel5/.envDB_HOST=localhost DB_DATABASE=test DB_USERNAME=root DB_PASSWORD=Laravelartisanmodel **php artisan make:model Column**2016_04_14_095248_create_columns_ta">
data-id="1190000004940611">
一、 在learnlaravel5/.env
中配置数据库链接
<code>DB_HOST=localhost DB_DATABASE=test DB_USERNAME=root DB_PASSWORD=</code>
二、使用Laravel中的artisan建立model和数据库生成文件
<code> **php artisan make:model Column**</code>
<code>示例自动生成2016_04_14_095248_create_columns_table。</code>
三、修改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>
四、生成数据库表
<code>php artisan migrate</code>
以上就介绍了Lavarel基础实践——model,数据库,包括了model方面的内容,希望对PHP教程有兴趣的朋友有所帮助。