feat: refs #8073 #refs 8073 create vn.productionCountryVolume #3321
No reviewers
Labels
No Milestone
No Assignees
2 Participants
Notifications
Due Date
No due date set.
Dependencies
No dependencies set.
Reference: verdnatura/salix#3321
Loading…
Reference in New Issue
No description provided.
Delete Branch "8073-newTableProductionCountryVolume"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS vn.productionCountryVolume(
Ací jo canviaría el nom a productionCountry, perque si en un futur volen ficar mes datos de producció relacionats en el país tindrem que canviar el nom de la taula.
@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS vn.productionCountryVolume(
id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
Per a que volem un id puguent gastar countryFk com a primary key?
@ -0,0 +1,9 @@
CREATE TABLE IF NOT EXISTS vn.productionCountryVolume(
id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
countryFk MEDIUMINT(8) UNSIGNED NOT NULL,
estimate DECIMAL(6, 2),
Este comentari va relacionat en el primer.
Ficaría: volumeGrowthEstimatePercent
@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS vn.productionCountry(
countryFk MEDIUMINT(8) UNSIGNED NOT NULL,
volumeGrowthEstimatePercent DECIMAL(6, 2),
Añade un comentario para la columna, aunque con el nombre está muy claro, nunca viene mal poner descripción
@ -0,0 +5,4 @@
CONSTRAINT productionCountryVolume_countryFK
FOREIGN KEY (countryFk) REFERENCES vn.country (id)
ON DELETE RESTRICT ON UPDATE CASCADE
) COMMENT = 'Estimación del crecimiento por país'
Cambia la descripción a algo más genérico.