enum( 'bluevine_status', array( 'ignored', 'signed_up' ) )->nullable(); } ); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table( 'accounts', function ( $table ) { $table->dropColumn( 'bluevine_status' ); } ); } }