Change to having display_name and full_name for customers
This commit is contained in:
parent
286ecf11e1
commit
aed22d1c98
9 changed files with 133 additions and 70 deletions
|
@ -13,7 +13,12 @@ __PACKAGE__->add_columns(
|
|||
is_auto_increment => 1,
|
||||
is_nullable => 0,
|
||||
},
|
||||
"name" => {
|
||||
"display_name" => {
|
||||
data_type => "varchar",
|
||||
size => 255,
|
||||
is_nullable => 0,
|
||||
},
|
||||
"full_name" => {
|
||||
data_type => "varchar",
|
||||
size => 255,
|
||||
is_nullable => 0,
|
||||
|
|
Reference in a new issue