当我们运行迁移时,up 方法会被调用;(创建表)
当我们回滚迁移时,down 方法会被调用。(删除表)
?public function up()
? ? {//create 方法会接收两个参数:一个是数据表的名称,另一个则是接收 $table(Blueprint 实例)的闭包。
? ? ? ? Schema::create('users', function (Blueprint $table) {
? ? ? ? ? ? $table->id();
? ? ? ? ? ? $table->string('name');
? ? ? ? ? ? $table->string('email')->unique();
? ? ? ? ? ? $table->timestamp('email_verified_at')->nullable();
? ? ? ? ? ? $table->string('password');
? ? ? ? ? ? $table->rememberToken();
? ? ? ? ? ? $table->timestamps();
? ? ? ? });
? ? }
? public function down()
? ? {
? ? ? ? Schema::dropIfExists('users');
? ? }
清理缓存重启服务
在命令行中进入程序根目录,执行下列语句。
php artisan cache:clear
php artisan config:clear
php artisan migrate
php artisan make:model Article
//删除模型
rm app/Models/Article.php
php artisan make:model Article -m
「下划线命名法」与「复数形式名称」来作为数据表的名称生成规则
Article 数据模型类对应 articles 表;
User 数据模型类对应 users 表;
BlogPost 数据模型类对应 blog_posts 表;
进入Tinker环境:
php artisan tinker
在Tinker里面创建一个用户对象:
//调用了一个叫 bcrypt 的方法,将 password 的值进行加密
App\Models\User::create(['name'=> 'Summer', 'email'=>'summer@example.com','password'=>bcrypt('password')])
使用 use 来引用 App\Models\User Eloquent 模型类
use App\Models\User
1.$user = User::first()
2.$user->name = 'Monkey'
3.$user->save()? ? ?//保存,不保存显示的还是未修改之前的
4.User::first()
1.$user->update(['name'=>'Summer'])
2.User::first()