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">

Heim >Backend-Entwicklung >PHP-Tutorial >Lavarel基础实践——model,数据库 models modem model no

Lavarel基础实践——model,数据库 models modem model no

WBOY
WBOYOriginal
2016-07-29 08:53:301617Durchsuche

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教程有兴趣的朋友有所帮助。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn