1、新增了幾個欄位在icar_pageview 用於統計訪問資料
2、新增了幾個評分欄位在order_goods表單中,用於統計店鋪評分資料
3、新增乙個使用者帳戶表
配置在店鋪模型
// 乙個店鋪屬於乙個會員'belongs_to_user' => array(
'model' => 'member',
'type' => belongs_to,
'foreign_key' => 'store_id',
'reverse' => 'has_store',
),
配置在使用者模型
'has_store' =>array('model' => 'store', //
模型的名稱
'type' => has_one, //
關係型別
'foreign_key' => 'store_id', //
外鍵名 'dependent' => true
//依賴
),
對提出的問題能夠很好的抽象, 建模, 設計出良好的**結構!
資料庫筆記
資料庫mariadb 基本操作 mysql secure installation 配置嚮導 mysql uroot p 登陸資料庫 enter password 輸入密碼 welcome to the mariadb monitor.commands end with or g.your mari...
資料庫筆記
1.資料庫分頁查詢 select from table limit startline,pagesize 從startline開始查詢pagesize大小行資料 2.級聯操作 當存在外來鍵約束時,主表若想刪除或修改資料,必須先修改副表中相關聯的資料.如果想直接修改或刪除主表資料,同時改變副表 資料就...
資料庫筆記
筆記記錄 左外連線left join 涉及表 student,fee,fee info三張表,截圖依次如下 兩張表應用 查詢1 查詢2 對比就可以看出區別,查詢2比查詢1多1條鳳姐的記錄 此條記錄的s.number沒有對應的f.feeid 查詢1 s.number找不到對應的f.feeid時,會自動...