I have to add a new column to an existing table that already has data in it and running into a bit of a hiccup.
How can I add this column? Its going to be a
Not Nullablefield. I'm ok with populating it with default data for right now and going back and updating later. so if we need to drop constraints while adding. I'm assuming I'm going to need to utilize straight SQL queries.Make this work w/ PHPUnit and SQLite, currently I'm getting an error
SQLSTATE[HY000]: General error: 1 Cannot add a NOT NULL column with default value NULL (SQL: alter table "tracks" add column "short_description" text not null)
How would I modify this migration?
public function up()
{
Schema::table('tracks', function(Blueprint $table)
{
$table->text('short_description')->after('description');
});
}
nulldefault value on a field which isnot null. That's an outright contradiction.$table->text('description');its created when the migration runs to create the table and seems to work just fine. :/ However, if I look at a description of the DB table in mysql I can clearly see it creates the column as NOT NULL, but with a NULL default value. And I can't set a default value on a text column. Which is why I was thinking I would have to drop the constraints on the table while the column was being created, and push in a temp default.