You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
class Add_Id_To_Clients_To_Seances extends Migration
{
public function up()
{
$this->add_column('seances', 'id_to_clients', 'integer');
}
public function down()
{
$this->remove_column('seances', 'id_to_clients');
}
}
Expected
class Add_Id_To_Clients_To_Seances extends Migration
{
public function up()
{
$this->add_column('clients_to_seances', 'id', 'integer');
}
public function down()
{
$this->remove_column('clients_to_seances', 'id');
}
}
The text was updated successfully, but these errors were encountered:
If table called like "clients_to_seances"
Then db:generate generates error code
./bash/minion db:generate --name=add_id_to_clients_to_seances
Expected
The text was updated successfully, but these errors were encountered: