欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

使用laravel 的artisan快速创建表

程序员文章站 2024-02-06 13:14:04
...
创建migrate 文件


php artisan make:migration create_comments_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