码迷,mamicode.com
首页 > 其他好文 > 详细

使用laravel 的artisan快速创建表

时间:2015-07-12 12:57:30      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

创建migrate 文件


php artisan make:migration create_comments_table

编辑表字段


<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class CreateCommentTable extends Migration {

	/**
	 * Run the migrations.
	 *
	 * @return void
	 */
	public function up()
	{
        Schema::create(‘comment‘,function(Blueprint $table){
            $table->engine = ‘InnoDB‘;
            $table->increments(‘id‘);
            $table->integer(‘news_id‘);
            $table->string(‘author_name‘);
            $table->string(‘author_url‘);
            $table->string(‘author_key‘);
            $table->string(‘ip‘);
            $table->string(‘message‘);
            $table->string(‘mail‘);
            $table->integer(‘create_time‘);
            $table->integer(‘parent_id‘);
        });
	}

	/**
	 * Reverse the migrations.
	 *
	 * @return void
	 */
	public function down()
	{
		//
	}

}

创建表

php artisan migrate





使用laravel 的artisan快速创建表

标签:

原文地址:http://my.oschina.net/freax/blog/477521

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!