Skip to content

Commit

Permalink
fintech-fab#17 Переименование моделей таблиц dinner_menu_items и dinn…
Browse files Browse the repository at this point in the history
…er_menu_users
  • Loading branch information
kmarenov committed Sep 7, 2014
1 parent 241d64d commit f8d1ae0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@
* @property string $description
* @property float $price
* @property string $date
* @property string $deleted_at
* @property string $updated_at
* @property string $created_at
*/
class DinnerMenuItems extends Eloquent
class DinnerMenuItem extends Eloquent
{
protected $fillable = array('title', 'description', 'price', 'date');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,11 @@
* @property integer $user_id
* @property integer $dinner_menu_item_id
* @property integer $count
* @property string $deleted_at
* @property string $updated_at
* @property string $created_at
*/
class DinnerMenuUsers extends Eloquent
class DinnerMenuUser extends Eloquent
{
protected $fillable = array('user_id', 'dinner_menu_item_id', 'count');

Expand Down

0 comments on commit f8d1ae0

Please sign in to comment.