This commit is contained in:
2025-09-17 00:39:54 +02:00
parent da65397dfb
commit 690b10d334
6 changed files with 6579 additions and 6574 deletions

View File

@@ -45,6 +45,9 @@ create table ligne (
quantite decimal
);
alter table ligne
add column total decimal generated always as (prix_unitaire * quantite) stored;
create table marque (
id int primary key,
marque text not null