learnlaravel5/.envDB_HOST=localhostDB_DATABASE=testDB_USERNAME=rootDB_PASSWORD=Laravelartisa">
当前位置:Gxlcms > PHP教程 > Lavarel基础实践——model,数据库modelsmodemmodelno

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

时间:2021-07-01 10:21:17 帮助过:2人阅读

data-id="1190000004940611">

一、 在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

以上就介绍了Lavarel基础实践——model,数据库,包括了model方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行