6 lines
225 B
SQL
6 lines
225 B
SQL
create table oc_gestion_client_group_facturation(
|
|
id INT PRIMARY KEY AUTO_INCREMENT,
|
|
group_facturation_name VARCHAR(255) DEFAULT 'Nom du groupe'
|
|
);
|
|
|
|
alter table oc_gestion_client ADD fk_client_group_facturation_id INT NULL; |