Change default color for color column.

This commit is contained in:
Alex Tselegidis 2022-01-18 18:54:11 +01:00
parent 25f533df39
commit 932d8d7ca1
2 changed files with 2 additions and 2 deletions

View file

@ -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'
] ]
]; ];

View file

@ -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'
] ]
]; ];