ホームページ > バックエンド開発 > PHPチュートリアル > Laravel の Artisan を使用してテーブルをすばやく作成する

Laravel の Artisan を使用してテーブルをすばやく作成する

WBOY
リリース: 2016-06-23 13:31:00
オリジナル
1322 人が閲覧しました

移行ファイルの作成


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
ログイン後にコピー





ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート