removed user_id mapping from account table

This commit is contained in:
David Bomba 2015-11-11 21:22:57 +11:00
parent 380872db56
commit 74d5ecfa01

View File

@ -51,8 +51,7 @@ class AccountTransformer extends TransformerAbstract
'language_id' => (int) $account->language_id,
'fill_products' => (bool) $account->fill_products,
'update_products' => (bool) $account->update_products,
'vat_number' => $account->vat_number,
'user_id' => $account->user_id
'vat_number' => $account->vat_number
];
}
}