数据库

作者: 刚刚少帅 | 来源:发表于2017-04-08 08:48 被阅读0次

    数据库建模工具

    创建数据库模型    

    或者在最外层建立个  Entity   文件夹   这个也是常用模型的文件名

    ##php artisan make:model  Model\User    在app   http 下先创建一个model   

    ```

    namespace App\Http\Model;

    use Illuminate\Database\Eloquent\Model;

    class User extends Model

    {

    protected $table = 'user';//如果不定义  默认是users

    protected $primaryKey = 'art_id';//如果不定义会找id    而表中是写的user_id    find(1)就是查询user_id = 1;

    public $timestamps = false;//否则在update()  时他会自动插入数据库updata_at更新时间  数据库没有这个字段会报错 1加这个2数据库增加字段

    protected $guarded = [];//排除为空的guarded

    }

    ```

    相关文章

      网友评论

          本文标题:数据库

          本文链接:https://www.haomeiwen.com/subject/nhflattx.html