Skip to content
Extraits de code Groupes Projets
Valider 70f5f157 rédigé par Bastien Le Querrec's avatar Bastien Le Querrec
Parcourir les fichiers

add migration to add default values

b92f0d08 added default values to pass
strict SQL mode, but migrations were missing.

Had to use raw SQL queries because phinx does not support our structure.
parent b5b18e91
Aucune branche associée trouvée
Aucune étiquette associée trouvée
2 requêtes de fusion!131Draft : Merge preprod to master,!129Bring up
<?php
use Phinx\Migration\AbstractMigration;
class AddDefaultValues extends AbstractMigration
{
public function up()
{
$this->adapter->execute("ALTER TABLE contreparties ALTER datec SET DEFAULT '0000-00-00 00:00:00';");
$this->adapter->execute("ALTER TABLE contreparties ALTER commentaire SET DEFAULT '';");
$this->adapter->execute("ALTER TABLE dons ALTER datec SET DEFAULT '0000-00-00 00:00:00';");
$this->adapter->execute("ALTER TABLE dons ALTER cadeau SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER abo SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER taille SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER public SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER pdf SET DEFAULT \"\";");
$this->adapter->execute("ALTER TABLE dons ALTER decimale SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER datee SET DEFAULT '0000-00-00 00:00:00';");
$this->adapter->execute("ALTER TABLE dons ALTER pi_x SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER pi_y SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE dons ALTER hash SET DEFAULT \"\";");
$this->adapter->execute("ALTER TABLE dons ALTER taille_h SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE users ALTER total SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE users ALTER cumul SET DEFAULT '0';");
$this->adapter->execute("ALTER TABLE users ALTER pseudo SET DEFAULT \"\";");
$this->adapter->execute("ALTER TABLE users ALTER commentaire SET DEFAULT \"\";");
}
}
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter