一、 在learnlaravel5/.env
中配置数据库链接
DB_HOST=localhost
DB_DATABASE=test
DB_USERNAME=root
DB_PASSWORD=
二、使用Laravel中的artisan建立model和数据库生成文件
**php artisan make:model Column**
示例自动生成2016_04_14_095248_create_columns_table。
三、修改2016_04_14_095248_create_columns_table文件加入所需字段
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();
});
}
四、生成数据库表
php artisan migrate