首頁  >  文章  >  後端開發  >  使用laravel 的artisan快速创建表

使用laravel 的artisan快速创建表

WBOY
WBOY原創
2016-06-23 13:31:001294瀏覽

创建migrate 文件


php artisan make:migration create_comments_table
编辑表字段


<?phpuse 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





陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn