cpe24fundb / 412-Shop

fundb project
Do What The F*ck You Want To Public License
0 stars 4 forks source link

set primary key #18

Closed chawasit closed 6 years ago

chawasit commented 6 years ago

ตั้ง primary key ให้ เนื่องจากมันไม่มี increment เป็น primary key เหมือนตัวอื่น และมันเป็น superkey ต้องใช้

วิธีทำ

// set
$table->primary(['attribute1', 'attribute2']);

// drop
$table->dropPrimary('tables_attribute1_attribute2_primary');

Tasks