Bladeren bron

[backend] Migration champs configuration Tiller

dev
Guillaume Bourgeois 5 jaren geleden
bovenliggende
commit
4d90f05395
1 gewijzigde bestanden met toevoegingen van 6 en 6 verwijderingen
  1. +6
    -6
      console/migrations/m191218_142414_tiller.php

+ 6
- 6
console/migrations/m191218_142414_tiller.php Bestand weergeven

@@ -7,15 +7,15 @@ class m191218_142414_tiller extends Migration
{
public function up()
{
$this->addColumn('tiller', 'tiller', Schema::TYPE_BOOLEAN) ;
$this->addColumn('tiller', 'tiller_provider_token', Schema::TYPE_STRING) ;
$this->addColumn('tiller', 'tiller_restaurant_token', Schema::TYPE_STRING) ;
$this->addColumn('producer', 'tiller', Schema::TYPE_BOOLEAN) ;
$this->addColumn('producer', 'tiller_provider_token', Schema::TYPE_STRING) ;
$this->addColumn('producer', 'tiller_restaurant_token', Schema::TYPE_STRING) ;
}

public function down()
{
$this->dropColumn('tiller', 'tiller') ;
$this->dropColumn('tiller', 'tiller_provider_token') ;
$this->dropColumn('tiller', 'tiller_restaurant_token') ;
$this->dropColumn('producer', 'tiller') ;
$this->dropColumn('producer', 'tiller_provider_token') ;
$this->dropColumn('producer', 'tiller_restaurant_token') ;
}
}

Laden…
Annuleren
Opslaan