命令创建模型类
php artisan make:model Article
php artisan make:model Page
?這樣,再在app目錄下就會有兩個文件Article.php?和Page.php.
接下來進行 Article 和 Page 類對應的 articles 表和 pages表的數據庫遷移,進入 learnlaravel5/databases/migrations 文件夾。
在 *createarticles_table.php 中修改:
Schema::create('articles', function(Blueprint $table) { $table->increments('id'); $table->string('title'); $table->string('slug')->nullable(); $table->text('body')->nullable(); $table->string('image')->nullable(); $table->integer('user_id'); $table->timestamps(); });在 *createpages_table.php 中修改:
Schema::create('pages', function(Blueprint $table) { $table->increments('id'); $table->string('title'); $table->string('slug')->nullable(); $table->text('body')->nullable(); $table->integer('user_id'); $table->timestamps(); });然后執行命令:
php artisan migrate成功以后, tables 表和 pages 表已經出現在了數據庫里,去看看吧~
轉載于:https://www.cnblogs.com/yuwensong/p/4765965.html
總結
- 上一篇: 我的Android进阶之旅------g
- 下一篇: CSS background-posit