Peter
Peter

Reputation: 233

Add default value to enum type field in schema builder

I'm using the following method to create a database column of type ENUM in schema builder:

$table->enum('status', array('new', 'active', 'disabled'));

I'd like to set it's default value to active.
I tried to do this:

$table->enum('status', array('new', 'active', 'disabled'))->default('active');

But as you can guess it doesn't set it's default value. I'm using a MySQL database if that's important.

Upvotes: 13

Views: 25376

Answers (3)

Almaida Jody
Almaida Jody

Reputation: 596

use this :

$table->enum('status',['new', 'active', 'disabled'])->default('active');

Upvotes: 16

Hyder B.
Hyder B.

Reputation: 12226

I ran into a similar issue, that's what worked for me:

$table->enum('status', array('active', 'new', 'disabled'));

Place the default value as the first element in the array. active is now the default value.

Upvotes: 5

Joel Hinz
Joel Hinz

Reputation: 25384

From the MySQL manual:

If an ENUM column is declared to permit NULL, the NULL value is a legal value for the column, and the default value is NULL. If an ENUM column is declared NOT NULL, its default value is the first element of the list of permitted values.

I'm assuming this means you should set 'active' as the first value, remove the default() call, and possibly set NULL permittance manually.

Upvotes: 18

Related Questions