Made two new columns nullable. #37

This commit is contained in:
James Cole 2014-12-24 05:43:08 +01:00
parent 886dcae822
commit dbcae16b75

View File

@ -495,8 +495,8 @@ class ChangesForV321 extends Migration
{
Schema::table(
'transaction_currencies', function (Blueprint $table) {
$table->string('name', 48);
$table->string('symbol', 4);
$table->string('name', 48)->nullable();
$table->string('symbol', 4)->nullable();
}
);
}