Change default color for color column.
This commit is contained in:
parent
25f533df39
commit
932d8d7ca1
2 changed files with 2 additions and 2 deletions
|
@ -27,7 +27,7 @@ class Migration_Add_color_column_to_services_table extends CI_Migration {
|
||||||
'color' => [
|
'color' => [
|
||||||
'type' => 'VARCHAR',
|
'type' => 'VARCHAR',
|
||||||
'constraint' => '256',
|
'constraint' => '256',
|
||||||
'default' => '#4c95d2',
|
'default' => '#4c96cc',
|
||||||
'after' => 'description'
|
'after' => 'description'
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
|
@ -27,7 +27,7 @@ class Migration_Add_color_column_to_appointments_table extends CI_Migration {
|
||||||
'color' => [
|
'color' => [
|
||||||
'type' => 'VARCHAR',
|
'type' => 'VARCHAR',
|
||||||
'constraint' => '256',
|
'constraint' => '256',
|
||||||
'default' => '#4c95d2',
|
'default' => '#4c96cc',
|
||||||
'after' => 'hash'
|
'after' => 'hash'
|
||||||
]
|
]
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue