0
我需要爲多個字段上的唯一鍵創建Laravel遷移。 MongoDB的命令我要地圖是這樣的:jenssegers/mongodb migrations用於在多個字段上創建唯一索引
db.collection.ensureIndex({A:1,B:1},{獨特:真正})
是否有可能與jenssegers/mongodb或與另一個包?
我需要爲多個字段上的唯一鍵創建Laravel遷移。 MongoDB的命令我要地圖是這樣的:jenssegers/mongodb migrations用於在多個字段上創建唯一索引
db.collection.ensureIndex({A:1,B:1},{獨特:真正})
是否有可能與jenssegers/mongodb或與另一個包?
Schema::create('collection', function ($collection) {
$collection->unique(array('a', 'b'));
});