Lavarel基础实践——model,数据库

一、 在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
    原文作者:探索勘误
    原文地址: https://segmentfault.com/a/1190000004940611
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞