我想爲一個項目創建一些註釋模型,但是我找不到任何創建註釋移植腳本的參考,我只在vimeo上找到此視頻:Laravel 4 - Eloquent Collections & Polymorphic Relations。Laravel Schema是否管理開箱即用的多態關聯?
我應該明確添加多態列嗎?
Schema::create('comments',function($table){
$table->increments('id');
$table->text('body');
$table->string('commentable_type');
$table->integer('commentable_id');
$table->timestamps();
});
問題之際,製造商做預期時,關鍵是一個外鍵在$table->foreign('user_id')->references('id')->on('users');
我知道Schema和Eloquent是不同的概念。我想知道是否有添加多態列的快捷方式,就像'$ table-> timestamps()'。我認爲這意味着混合邏輯與存儲。 –
對。我沒有光顧,只是強化了他們沒有聯繫的事實。 –
Schema表示「這裏是領域」。雄辯模型然後說「使用這些領域」。 –