forked from mirrors/easyappointments
FIx down procedure for Secretary Provider
For the secretary provider, the modify_column is wrongly applied to the ea_roles table whereas it should be applied to the ea_secretaries_providers table.
This commit is contained in:
parent
b301dafd9d
commit
c313249b16
1 changed files with 1 additions and 1 deletions
|
@ -320,7 +320,7 @@ class Migration_Change_column_types extends CI_Migration {
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
||||||
$this->dbforge->modify_column('ea_roles', $fields);
|
$this->dbforge->modify_column('ea_secretaries_providers', $fields);
|
||||||
|
|
||||||
// Services
|
// Services
|
||||||
$fields = [
|
$fields = [
|
||||||
|
|
Loading…
Reference in a new issue