0

Currently my migration:

$table->string('avatar');
$table->boolean('online')->default(0);
$table->boolean('adult')->default(0);

In the schema : Generated schema for migration

user2632863
  • 7
  • 1
  • 3

1 Answers1

1
Schema::table('tablename', function ($table) {
$table->tinyInteger('online')->change();
});
Chinnu
  • 61
  • 8
  • Please put your answer always in context instead of just pasting code. See [here](https://stackoverflow.com/help/how-to-answer) for more details. – gehbiszumeis Jan 09 '20 at 10:19