public function safeUp()
{
$this->alterColumn('order','street','default "нет"');
$this->alterColumn('order','house','default 0');
$this->alterColumn('order','flat','default 0');
}
public function safeDown()
{
$this->alterColumn('order','street', 'drop default');
$this->alterColumn('order','house','drop default');
$this->alterColumn('order','flat','drop default');
}
public function safeUp()
{
$this->alterColumn('order','street', $this->string()->notNull->defaultValue(0));
}
public function safeDown()
{
$this->alterColumn('order','street', $this->string()); // будет значение по умолчанию null
}